@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