Dashboard

{{ $today->format('l, j F Y') }} · overview at a glance

@include('layouts.partials.icon', ['name' => 'plus', 'class' => 'w-4 h-4']) New guest
@php $stats = [ ['label' => 'Arrivals today', 'value' => $arrivalsToday, 'caption' => 'expected check-ins'], ['label' => 'In-house', 'value' => $inHouse, 'caption' => 'guests checked in'], ['label' => 'Departures today', 'value' => $departuresToday, 'caption' => 'expected check-outs'], ['label' => 'Occupancy', 'value' => $totalRooms > 0 ? round(($occupiedRooms / $totalRooms) * 100) . '%' : '0%', 'caption' => "{$occupiedRooms} of {$totalRooms} rooms"], ]; @endphp @foreach ($stats as $s)
{{ $s['label'] }}
{{ $s['value'] }}
{{ $s['caption'] }}
@endforeach

Recent guests

All guests
@if ($recentGuests->isEmpty())
No guests yet — create one to get started.
@else @endif

Room status

Occupied
{{ $occupiedRooms }}
Dirty / turning
{{ $dirtyRooms }}
Active inventory
{{ $totalRooms }}
Total guests on file
{{ $totalGuests }}