{{ $order->service->name }}

{{ $order->reference }}

{{ $order->track_title }}
@if ($order->is_express) Express · @endif Back {{ $order->service->turnaroundLabel($order->is_express) }}
@if ($order->due_at)
Due {{ $order->due_at->setTimezone(config('studio.timezone'))->format('D j M, H:i') }}
@endif
@if (bccomp((string) $order->price_total, '0.00', 2) === 0)
On your package
@else
£{{ $order->price_total }}
@endif
@if ($error)
{{ $error }}
@endif @if ($notice)
{{ $notice }}
@endif {{-- Payment --}} @if ($this->owesMoney)
Payment needed

We start work once this clears and your audio is with us.

@endif {{-- Source audio --}}
Your audio
@if ($this->sourceFiles->isEmpty())

Nothing yet. We cannot start until we have something to work on.

@else @endif {{-- Direct-to-storage upload. The file goes browser → bucket. It never touches PHP, which is the only way a 500 MB WAV survives shared hosting: upload_max_filesize, memory_limit and max_execution_time would each stop it otherwise. Three steps: ask the server to sign, PUT the file, tell the server it landed. The server then checks the object is really there before recording anything. --}}

{{-- Delivery --}} @if ($this->deliveries->isNotEmpty())
Your track is ready

Download links are short-lived. Come back here any time for a fresh one.

@endif