@extends('mail.notifications.layout') @section('content') @php $fileCount = $transfer->files->count(); $availableUntil = $transfer->isInGracePeriod() ? $transfer->grace_ends_at : $transfer->paid_until; @endphp
📁 File transfer
{{ $transfer->title }}
@if($senderName) {{ $senderName }} shared {{ $fileCount === 1 ? 'a file' : $fileCount.' files' }} with you via Ladill Transfer. @else Someone shared {{ $fileCount === 1 ? 'a file' : $fileCount.' files' }} with you via Ladill Transfer. @endif
@elseif($milestone === 'grace')Grace period
Download soon
The transfer {{ $transfer->title }} is in a grace period. @if($availableUntil) Files will be deleted on {{ $availableUntil->format('F j, Y') }} unless payment is received. @endif
@else{{ $transfer->title }} @if($daysRemaining === 1) will become unavailable tomorrow. @else will become unavailable in {{ $daysRemaining }} days. @endif
@endif @if($transfer->message){{ $transfer->message }}
@endif @if($transfer->isPasswordProtected())This transfer is password protected. The sender will need to share the password with you separately.
@endif| Download files |
Or open this link: {{ $publicUrl }}
@if($availableUntil && $milestone !== 'grace')Available until {{ $availableUntil->format('F j, Y') }}.
@endif @endsection