A new custom tour request has been submitted.
Reference No: {{ $tourRequest->reference_no }}
Customer: {{ $tourRequest->full_name }}
Country: {{ $tourRequest->country ?: '-' }}
Email: {{ $tourRequest->email ?: '-' }}
Phone: {{ $tourRequest->phone ?: '-' }}
WhatsApp: {{ $tourRequest->whatsapp ?: '-' }}
Trip Title: {{ $tourRequest->trip_title ?: '-' }}
Start Date: {{ optional($tourRequest->start_date)->format('Y-m-d') }}
Nights: {{ $tourRequest->nights }}
Adults: {{ $tourRequest->adults }}
Children: {{ $tourRequest->children }}
@if(!empty($tourRequest->children_ages))Children Ages: {{ implode(', ', $tourRequest->children_ages) }}
@endifSingle Rooms: {{ $tourRequest->single_rooms }}
Double Rooms: {{ $tourRequest->double_rooms }}
Triple Rooms: {{ $tourRequest->triple_rooms }}
Advance Amount: {{ $tourRequest->currency ?? 'USD' }} {{ number_format((float) $tourRequest->total_advance_amount, 2) }}
Grand Total: {{ $tourRequest->currency ?? 'USD' }} {{ number_format((float) $tourRequest->grand_total, 2) }}
Status: {{ ucfirst($tourRequest->status) }}