Create or link a patient profile, then assign the next available slot for today.
@if(session('success'))| Room | Time | Capacity | Booked | Status |
|---|---|---|---|---|
| Dental Room {{ $slot['room_number'] ?? '-' }} | {{ !empty($slot['slot_time']) ? date('g:i A',strtotime($slot['slot_time'])) : '-' }} | {{ $capacity }} | {{ $bookedCount }} | @if($available > 0) Available @else Full @endif |
| No appointment slots available today. | ||||