@extends('layouts.app') @section('title', 'Dashboard - Hotel Management System') @section('breadcrumbs')
@endsection @section('content')Today is {{ now()->format('l, F d, Y') }}. You have {{ rand(3, 8) }} tasks pending.
Total Rooms
{{ rand(50, 100) }}
All room types
Today's Check-ins
{{ rand(5, 15) }}
Expected arrivals
Today's Check-outs
{{ rand(8, 18) }}
Expected departures
Occupancy Rate
{{ rand(65, 95) }}%
Revenue Today
{{ formatCurrency(rand(5000, 15000)) }}
Room + Restaurant
Pending Orders
{{ rand(3, 12) }}
Restaurant orders
| Guest Name | Room | Check-in | Check-out | Status |
|---|---|---|---|---|
| John Smith | Room 301 | {{ now()->format('M d, Y') }} | {{ now()->addDays(3)->format('M d, Y') }} | Checked In |
| Sarah Johnson | Room 205 | {{ now()->format('M d, Y') }} | {{ now()->addDays(2)->format('M d, Y') }} | Checked In |
| Michael Brown | Room 102 | {{ now()->addDays(1)->format('M d, Y') }} | {{ now()->addDays(4)->format('M d, Y') }} | Pending |
| Emily Davis | Room 401 | {{ now()->addDays(2)->format('M d, Y') }} | {{ now()->addDays(5)->format('M d, Y') }} | Confirmed |
| David Wilson | Room 215 | {{ now()->addDays(3)->format('M d, Y') }} | {{ now()->addDays(6)->format('M d, Y') }} | Confirmed |
Available Rooms
{{ rand(15, 25) }}
Ready for guests
Occupied Rooms
{{ rand(20, 35) }}
Currently occupied
Under Maintenance
{{ rand(3, 8) }}
Out of service
Dirty/Cleaning
{{ rand(5, 10) }}
Requires cleaning
Check-in completed
John Smith checked in to Room 301
{{ now()->format('H:i') }}
New reservation created
Michael Brown booked Room 102 for 3 nights
{{ now()->subHours(2)->format('H:i') }}
Purchase order received
Supplies for kitchen from vendor ABC
{{ now()->subHours(4)->format('H:i') }}
Order placed
Restaurant order #1024 for Table 5
{{ now()->subHours(6)->format('H:i') }}
Room marked for cleaning
Room 205 checkout completed, cleaning assigned
{{ now()->subHours(8)->format('H:i') }}