@php
$roomTypes = $data['form_data']['room_types'] ?? [];
$sections = $data['form_data']['sections'] ?? [];
$descriptions = $data['form_data']['descriptions'] ?? [];
@endphp
Meet & Greet 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']['meet_greet_type']) &&
($data['form_data']['meet_greet_type'] === 'Arrival' || $data['form_data']['meet_greet_type'] === 'Both'))
@if (!empty($data['form_data']['arrival_date']))
-
Arrival Date
:
{{ $data['form_data']['arrival_date'] ?? '' }}
@endif
@if (!empty($data['form_data']['arrival_time']))
-
Arrival Time
:
{{ $data['form_data']['arrival_time'] ?? '' }}
@endif
@if (!empty($data['form_data']['arrival_flight_no']))
-
Arrival Flight No.
:
{{ $data['form_data']['arrival_flight_no'] ?? '' }}
@endif
@endif
@if (
!empty($data['form_data']['meet_greet_type']) &&
($data['form_data']['meet_greet_type'] === 'Departure' || $data['form_data']['meet_greet_type'] === 'Both'))
@if (!empty($data['form_data']['departure_date']))
-
Departure Date
:
{{ $data['form_data']['departure_date'] ?? '' }}
@endif
@if (!empty($data['form_data']['departure_time']))
-
Departure Time
:
{{ $data['form_data']['departure_time'] ?? '' }}
@endif
@if (!empty($data['form_data']['departure_flight_no']))
-
Departure Flight No.
:
{{ $data['form_data']['departure_flight_no'] ?? '' }}
@endif
@endif
-
No. of Guests
:
{{ $data['form_data']['no_of_guests'] ?? '' }}
-
No. of Luggage
:
{{ $data['form_data']['no_of_luggage'] ?? '' }}
-
Greeter's Details
:
{{ $data['form_data']['greeters_details'] ?? 'N/A' }}
@if (
!empty($data['form_data']['meet_greet_type']) &&
($data['form_data']['meet_greet_type'] === 'Arrival' || $data['form_data']['meet_greet_type'] === 'Both'))
@if (!empty($data['form_data']['arrival_meeting_point_and_time']))
-
Arrival Meeting Point and Time
:
{{ $data['form_data']['arrival_meeting_point_and_time'] ?? '' }}
@endif
@endif
@if (
!empty($data['form_data']['meet_greet_type']) &&
($data['form_data']['meet_greet_type'] === 'Departure' || $data['form_data']['meet_greet_type'] === 'Both'))
@if (!empty($data['form_data']['departure_meeting_point_and_time']))
-
Departure Meeting Point and Time
:
{{ $data['form_data']['departure_meeting_point_and_time'] ?? '' }}
@endif
@endif
@if (count($sections) && count($descriptions))
@endif