← 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(is_array($transfer->recipient_email_milestones) && $transfer->recipient_email_milestones !== [])
·
Notified on {{ implode(', ', array_map(fn ($m) => $m === 'created' ? 'share' : $m, $transfer->recipient_email_milestones)) }}
@endif
@endif
Share link
@if($publicUrl)
@endif
@if($transfer->isPasswordProtected())
Password protected
@endif
@if($transfer->message)
{{ $transfer->message }}
@endif
@if($qrCode && $previewDataUri)
QR code
@endif
Files ({{ $transfer->files->count() }})
@foreach($transfer->files as $file)
{{ $file->original_name }}
{{ $file->humanSize() }} · {{ number_format($file->downloads_total) }} downloads
@endforeach