@extends('layouts.app') @section('title', 'Booking Report') @section('page-title', 'Booking Report') @section('content')
Total Bookings
{{ $totalBookings }}
By Source
@foreach($bySource as $source => $count)
{{ ucfirst($source) }}: {{ $count }}
@endforeach
@foreach($bookings as $b) @endforeach
DateRefGuestRoomStatusTotal
{{ $b->created_at->format('d M Y') }} {{ $b->booking_reference }} {{ $b->guest->first_name }} {{ $b->guest->last_name }} {{ $b->room->room_number }} {{ ucfirst($b->status) }} ₦{{ number_format($b->invoice->total ?? 0, 2) }}
@endsection