@extends('layouts.admin')
@section('title', 'Dashboard')
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
New Reservation
Check-in
@if($housekeepingTasks->isNotEmpty())
@foreach($housekeepingTasks as $t)
- Room {{ $t->room?->number }}
@endforeach
@endif
@if($maintenanceAlerts->isNotEmpty())
@foreach($maintenanceAlerts as $m)
- {{ $m->number }} โ Room {{ $m->room?->number ?? 'N/A' }}
@endforeach
@endif
@if($lowStock->isNotEmpty())
@foreach($lowStock as $item)
- {{ $item->name }}{{ $item->quantity_on_hand }}
@endforeach
@endif
@endif
@endsection
@push('scripts')
@endpush