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

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'] ?? '' }}
  • Date : {{ $data['form_data']['date'] ?? '' }}
  • @if (!empty($data['form_data']['no_of_hours']))
  • No. of Hours : {{ $data['form_data']['no_of_hours'] ?? '' }}
  • @endif
  • Flight No. : {{ $data['form_data']['flight_no'] ?? '' }}
  • No. of Persons : {{ $data['form_data']['no_of_persons'] ?? '' }}
  • No. of Luggage : {{ $data['form_data']['no_of_luggage'] ?? '' }}
  • Pick-up Location : {{ $data['form_data']['pickup_location'] ?? '' }}
  • Pick-up Time : {{ $data['form_data']['pickup_time'] ?? '' }}
  • Drop-off Location : {{ $data['form_data']['dropoff_location'] ?? '' }}
  • @if (count($roomTypes))
  • Vehicle Selected @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