@extends('layouts.app') @section('title', 'Booking Reports') @section('breadcrumbs') @endsection @section('content')
Analyze booking trends and occupancy patterns
Total Bookings
324
↑ 12% from last period
Total Revenue
$82,400
↑ 8% from last period
Avg Stay Duration
3.2
nights per booking
Occupancy Rate
78%
↑ 5% from last period
| Booking ID | Guest Name | Check-in | Check-out | Room Type | Amount | Status |
|---|---|---|---|---|---|---|
| BK-2024-{{ str_pad(5001 + $i, 5, '0', STR_PAD_LEFT) }} | Guest {{ $i + 1 }} | {{ now()->addDays($i)->format('M d, Y') }} | {{ now()->addDays($i + 3)->format('M d, Y') }} | @switch($i % 3) @case(0) Deluxe Double @break @case(1) Twin Beds @break @case(2) Suite @break @endswitch | ${{ number_format(250 + ($i * 25), 2) }} | @if ($i % 5 === 0) Pending @elseif ($i % 5 === 1) Cancelled @else Confirmed @endif |
Showing 1 to 15 of 324 bookings