@extends('layouts.app') @section('title', 'Dashboard - Hotel Management System') @section('breadcrumbs') @endsection @section('content')

Welcome back, {{ auth()->user()->name }}!

Today is {{ now()->format('l, F d, Y') }}. You have {{ rand(3, 8) }} tasks pending.

Total Rooms

{{ rand(50, 100) }}

All room types

+5% from last month

Today's Check-ins

{{ rand(5, 15) }}

Expected arrivals

{{ rand(2, 4) }} new bookings today

Today's Check-outs

{{ rand(8, 18) }}

Expected departures

{{ rand(5, 8) }} late checkouts

Occupancy Rate

{{ rand(65, 95) }}%

Revenue Today

{{ formatCurrency(rand(5000, 15000)) }}

Room + Restaurant

+12% from yesterday

Pending Orders

{{ rand(3, 12) }}

Restaurant orders

Needs immediate attention
New Reservation Check-in Guest New Purchase New Order

Recent Reservations

View All
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

Room Status Overview

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

Revenue - Last 7 Days

Occupancy Rate - Last 30 Days

Today's Activity

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') }}

@endsection