{{ $title ?? 'Admin Report' }}

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