Logo

Tour Booking Confirmed!

Hello {{ $user->name }}!
Congratulations! Your tour booking has been confirmed successfully. We're excited to have you join us on this amazing adventure!
Booking Details
Tour: {{ $tour->title }}
Booking Reference: {{ $booking->booking_reference }}
Departure Date: {{ date('d M Y', strtotime($booking->departure_date)) }}
Adults: {{ $booking->adults }}
Children: {{ $booking->children }}
Total Amount: {{ $currencySymbol }} {{ number_format($booking->total_amount) }}
Status: {{ ucfirst($booking->status) }}
Payment Status: {{ ucfirst($booking->payment_status) }}
Passenger Details
@foreach($booking->passengers as $index => $passenger)
{{ $index + 1 }}. {{ $passenger['title'] }} {{ $passenger['first_name'] }} {{ $passenger['last_name'] }} @if(isset($passenger['country_name']))
Country: {{ $passenger['country_name'] }} @endif
@endforeach
Contact Information
@if(isset($booking->contact['name']))
Name: {{ $booking->contact['name'] }}
@endif @if(isset($booking->contact['email']))
Email: {{ $booking->contact['email'] }}
@endif @if(isset($booking->contact['phone']))
Phone: {{ $booking->contact['phone'] }}
@endif
Important Information