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
| Prefix |
Name |
Nationality |
Email |
Mobile |
@foreach($booking->passengers as $p)
| {{ $p->prefix }} |
{{ $p->first_name }} {{ $p->last_name }} |
{{ $p->nationality }} |
{{ $p->email }} |
{{ $p->mobile }} |
@endforeach
{{-- Policies --}}
@if(count($booking->policies) > 0)
Cancellation Policies
| From Date |
To Date |
Percentage |
@foreach($booking->policies as $policy)
| {{ $policy->from_date }} |
{{ $policy->to_date }} |
{{ $policy->amount }}% |
@endforeach
@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')