Monitor batch capacities, enrollments, and availability.
| Batch Details | Schedule | Capacity | Occupancy Rate | Status |
|---|---|---|---|---|
| {{ $batch->batch_code }} {{ $batch->course->name ?? 'Deleted Course' }} |
{{ \Carbon\Carbon::parse($batch->start_date)->format('d M, Y') }} -
{{ \Carbon\Carbon::parse($batch->end_date)->format('d M, Y') }}
{{ \Carbon\Carbon::parse($batch->start_time)->format('h:i A') }} to
{{ \Carbon\Carbon::parse($batch->end_time)->format('h:i A') }}
|
Booked
{{ $batch->booked_seats }}
Total
{{ $batch->total_seats }}
|
Available:
{{ max(0, $batch->total_seats - $batch->booked_seats) }}
{{ $occ }}%
|
@php $sClass = match ($batch->status) { 'open' => 'badge-soft-success', 'full' => 'badge-soft-danger', default => 'badge-soft-secondary', // closed }; @endphp {{ ucfirst($batch->status) }} |
No Batches FoundTry changing your date filters or course selection. |
||||