Dear {{ $user->name }},
Please note that your Rayna booking has been successfully confirmed with the following details:

Booked By: {{ $booking->user->name }}
Booking ID: {{ $booking->booking_id }}
Reference No: {{ $booking->reference_no }}
Date: {{ $booking->date }}
Start Time: {{ $booking->start_time }}
Adults: {{ $booking->adults }} | Children: {{ $booking->childes }}
Total Price: {{ number_format($booking->final_price, 2) }} USD
{{-- Passenger Details --}}

Passenger Details

@foreach($booking->passengers as $p) @endforeach
Prefix Name Nationality Email Mobile
{{ $p->prefix }} {{ $p->first_name }} {{ $p->last_name }} {{ $p->nationality }} {{ $p->email }} {{ $p->mobile }}
{{-- Policies --}} @if(count($booking->policies) > 0)

Cancellation Policies

@foreach($booking->policies as $policy) @endforeach
From Date To Date Percentage
{{ $policy->from_date }} {{ $policy->to_date }} {{ $policy->amount }}%
@endif

Important Note

The Tour Confirmation Number will be updated 72 hours before the tour date. You will receive an automated email once updated.

@include('mail.Footer')