{{ $transfer->title }} @php $qrCode = $transfer->qrCode; $publicUrl = $qrCode?->publicUrl(); $fmtBytes = function (int $bytes) { if ($bytes >= 1048576) return number_format($bytes / 1048576, 1).' MB'; return number_format($bytes / 1024, 0).' KB'; }; @endphp
← All transfers

{{ $transfer->title }}

@if($transfer->isInGracePeriod()) Payment due · files kept until {{ $transfer->grace_ends_at?->format('M j, Y') }} @elseif($transfer->paid_until) Paid through {{ $transfer->paid_until->format('M j, Y') }} @else Billing pending @endif · {{ $fmtBytes($transfer->storage_bytes) }} stored · GHS {{ number_format($transfer->monthlyCostGhs(), 2) }}/mo

@if(session('success'))
{{ session('success') }}
@endif @if($transfer->recipient_email)
Recipient: {{ $transfer->recipient_email }} @if($transfer->recipientMilestoneSent('created')) · Download link emailed @endif
@endif

Share link

@if($publicUrl)
@endif @if($transfer->isPasswordProtected())

Password protected

@endif @if($transfer->message)

{{ $transfer->message }}

@endif
@if($qrCode && $previewDataUri)

QR code

QR code
@endif

Files ({{ $transfer->files->count() }})

@foreach($transfer->files as $file)

{{ $file->original_name }}

{{ $file->humanSize() }} · {{ number_format($file->downloads_total) }} downloads

@endforeach