Visa Inquiry #{{ $visaInquiry->id }}

Submitted: {{ $visaInquiry->created_at?->format('d M, Y h:i A') }}

@if (session('success'))
{{ session('success') }}
@endif
Client
{{ $visaInquiry->name }}
Phone: {{ $visaInquiry->phone ?? '-' }}
Email: {{ $visaInquiry->email ?? '-' }}
Travel date: {{ $visaInquiry->travel_date?->format('d M, Y') ?? '-' }}
Date of birth: {{ $visaInquiry->date_of_birth?->format('d M, Y') ?? '-' }}
Passport no: {{ $visaInquiry->passport_number ?? '-' }}
@if($visaInquiry->status === 'new') NEW @elseif($visaInquiry->status === 'contacted') CONTACTED @else CLOSED @endif
Attachments
Applicant photo
@if($visaInquiry->applicant_image_path) View / Download →
Applicant photo
@else
@endif
Passport copy
@if($visaInquiry->passport_file_path) View / Download → @php($passportExt = strtolower(pathinfo($visaInquiry->passport_file_path, PATHINFO_EXTENSION))) @if(in_array($passportExt, ['jpg','jpeg','png','webp']))
Passport copy
@else
File type: {{ strtoupper($passportExt) }}
@endif @else
@endif
If images are not visible, make sure you ran: php artisan storage:link
Citizenship
{{ $visaInquiry->citizenship_country }}
Destination
{{ $visaInquiry->destination_country }}
Message
{{ $visaInquiry->message ?: '—' }}
Update status
@csrf @method('PATCH')
Technical
IP: {{ $visaInquiry->ip_address ?? '-' }}
User agent: {{ $visaInquiry->user_agent ?? '-' }}
@csrf @method('DELETE')