{{ $todayCount }}
Today’s Appointments
{{ $roomCount }}
Active Rooms
{{ $cancelCount }}
Pending Cancellations
{{ $walkInCount }}
Walk-In Patients Today
Room Status
Manage{{ $room['room_name'] ?? 'Room' }}
{{ $room['patient_category'] ?? 'Dental Room' }}
{{ ($room['is_active'] ?? true) ? 'Open' : 'Closed' }}
Serving
{{ $room['serving_queue'] ?? '-' }}
Waiting
{{ $room['waiting_count'] ?? 0 }}
No active rooms found.
@endforelse
Today’s Schedule ({{ $todayCount }})
View all| Time | Patient ID | Treatment | Room | Status |
|---|---|---|---|---|
| {{ !empty($appt['appointment_time']) ? date('g:i A', strtotime($appt['appointment_time'])) : '-' }} | {{ $patientText }} | {{ $appt['reason'] ?? 'Dental Check-Up' }} | {{ $roomText }} | {{ ucwords(str_replace('_', ' ', $status)) }} |
No appointments scheduled for today.
@endif