Booking Details

🧭 Trip Information
Received On:
{{ $booking->created_at->format('F j, Y') }}
Package:
{{ $booking->package->title }}
No. of People:
{{ $booking->no_of_people }}
Departure:
{{ $booking->departure_date }}
Arrival:
{{ $booking->arrival_date }}
Price:
${{ number_format($booking->package_price, 2) }} × {{ $booking->no_of_people }} = ${{ number_format($booking->package_price * $booking->no_of_people, 2) }}
👤 Personal Information
Name:
{{ "$booking->first_name $booking->last_name" }}
Email:
{{ $booking->email }}
@if (!empty($booking->country))
Nationality:
{{ $booking->country }}
@endif
Phone:
{{ $booking->phone }}
@if ($booking->message)
📝 Message

{!! $booking->message !!}

@endif
Status: @if ($booking->status === 'pending') Pending @elseif ($booking->status === 'confirmed') Confirmed @elseif ($booking->status === 'cancelled') Cancelled @endif