@php $roomTypes = $data['form_data']['room_types'] ?? []; $sections = $data['form_data']['sections'] ?? []; $descriptions = $data['form_data']['descriptions'] ?? []; @endphp
{{ $data['title'] ?? '' }}
{{--
{{ $data['title'] ?? '' }}
--}}
Hotel Reservation Confirmation

Greetings from WESTAY LTD.
We wish to thank you for the preference given to us and we are pleased to confirm your reservation with us.
Please find below the booking details for your reference:

  • Lead Guest Name : {{ $data['form_data']['lead_guest_name'] ?? '' }}
  • Reference : {{ $data['form_data']['reference_no'] ?? '' }}
  • @if (!empty($data['form_data']['hotel_confirmation_no']))
  • Hotel Confirmation : {{ $data['form_data']['hotel_confirmation_no'] ?? '' }}
  • @endif
  • Check-in Date : {{ $data['form_data']['checkin_date'] ?? '' }}
  • Check-out Date : {{ $data['form_data']['checkout_date'] ?? '' }}
  • No. of Nights : {{ $data['form_data']['number_of_nights'] ?? '' }}
  • No. of Guests : {{ $data['form_data']['number_of_guests'] ?? '' }}
  • Meal Plan : {{ $data['form_data']['meal_plan'] ?? '' }}
  • Special Request : {{ $data['form_data']['special_requests'] ?? 'N/A' }}
  • @if (count($roomTypes))
  • Room Type @foreach ($roomTypes as $index => $room) @if ($index > 0)
    {{ $room['type'] ?? '' }} @if (!empty($room['unit'])) x {{ $room['unit'] ?? '' }} @endif
    @else
    :{{ $room['type'] ?? '' }} @if (!empty($room['unit'])) x {{ $room['unit'] ?? '' }} @endif
    @endif @endforeach
  • @endif
@if (count($sections) && count($descriptions))
    @foreach ($sections as $i => $title)
  • {{ $title }}
    {!! $descriptions[$i] ?? '' !!}
  • @endforeach
@endif