@include('pdf.header')

Hotel Booking Voucher

Hotel Name: {{ $booking['booking']['hotel']['name'] ?? 'N/A' }}

Reference Number: {{ $booking['booking']['reference'] ?? 'N/A' }}

Check-in: {{ $booking['booking']['hotel']['checkIn'] ?? 'N/A' }}

Check-out: {{ $booking['booking']['hotel']['checkOut'] ?? 'N/A' }}

Guest Name: {{ $booking['guest_name'] ?? 'N/A' }}

Room Details

@foreach ($booking['booking']['hotel']['rooms'] as $room) @foreach ($room['rates'] as $rate) @endforeach @endforeach
Room Type Rate Comments Cancellation Policy
{{ $room['type'] ?? 'N/A' }} {{ $rate['rateComments'] ?? 'N/A' }} @foreach ($rate['cancellationPolicies'] as $policy) {{ $policy['from'] ?? 'N/A' }} - {{ $policy['amount'] ?? 'N/A' }} {{ $policy['currency'] ?? '' }}
@endforeach
@include('pdf.footer')