{{ __('frontend.booking_confirmed') }}!

{{ __('frontend.tour_booking_success_message') }}

{{ __('frontend.booking_reference') }}: {{ $booking->booking_reference }}

{{ __('frontend.tour_details') }}

{{ $booking->tour->title }}

@if($booking->tour->extra_field_1 && $booking->tour->extra_field_2)
{{ date('d M Y', strtotime($booking->tour->extra_field_1)) }} - {{ date('d M Y', strtotime($booking->tour->extra_field_2)) }}
@endif @if($booking->tour->extra_field_3)
{{ $booking->tour->extra_field_3 }} {{ __('frontend.days') }}
@endif
{{ __('frontend.departure') }}: {{ $booking->formatted_departure_date }}
{{ __('frontend.passenger_breakdown') }}
{{ __('frontend.adults') }} {{ $booking->adults }}x {{ \App\Helpers\CurrencyHelper::formatPrice($booking->adult_price) }}
@if($booking->children > 0)
{{ __('frontend.children') }} {{ $booking->children }}x {{ \App\Helpers\CurrencyHelper::formatPrice($booking->children_price ?? 0) }}
@endif
{{ __('frontend.total_amount') }} {{ $booking->formatted_total }}

{{ __('frontend.prices_include_taxes') }}

{{ __('frontend.payment_information') }}

{{ __('frontend.payment_method') }}: @if($booking->payment_method === 'stripe') {{ __('frontend.credit_debit_card') }} @else {{ __('frontend.paypal') }} @endif
{{ __('frontend.payment_status') }}: {{ ucfirst($booking->payment_status) }}
{{ __('frontend.transaction_id') }}: {{ $booking->payment_id ?? 'N/A' }}

{{ __('frontend.passenger_information') }}

@if(is_array($booking->passengers) && count($booking->passengers) > 0) @foreach($booking->passengers as $index => $passenger) @if(is_array($passenger))
{{ $passenger['title'] ?? 'N/A' }} {{ $passenger['first_name'] ?? 'N/A' }} {{ $passenger['last_name'] ?? 'N/A' }}
@if($index < $booking->adults) {{ __('frontend.adult') }} @else {{ __('frontend.child') }} @endif
{{ __('frontend.country') }}: @php $country = \App\Models\Country::find($passenger['country'] ?? null); @endphp {{ $country ? $country->name : 'N/A' }}
@if(!$loop->last)
@endif @endif @endforeach @else

{{ __('frontend.passenger_details_not_available') }}

@endif

{{ __('frontend.contact_information') }}

{{ __('frontend.name') }}: {{ $booking->contact['name'] }}
{{ __('frontend.email') }}: {{ $booking->contact['email'] }}
{{ __('frontend.phone') }}: {{ $booking->contact['phone'] }}

{{ __('frontend.important_information') }}

  • {{ __('frontend.arrive_30_minutes_early') }}
  • {{ __('frontend.bring_valid_photo_id') }}
  • {{ __('frontend.check_email_for_itinerary') }}
  • {{ __('frontend.contact_48_hours_for_changes') }}
  • {{ __('frontend.emergency_support_line') }}: +92 300 1234567
@push('css') @endpush