{{ $title ?? 'Bookings' }}

Hotel: {{ $hotelName ?? '' }}
@foreach($rows as $booking) @endforeach
Guest Ref Check In Check Out Nights Rooms Channel Status Booking Status Revenue
{{ $booking->customer->name ?? 'User not defined' }} {{ $booking->ref }} {{ $booking->check_in }} {{ $booking->check_out }} {{ $booking->nights }} {{ $booking->qty }} {{ $booking->channel }} {{ $booking->status }} {{ $booking->booking_status }} {{ optional($booking->payment)->amount ?? 0 }}