{{-- Top Bar --}}
{{-- Date + View History --}}
{{-- Warning --}} @if ($date !== now()->toDateString())
{{ $date < now()->toDateString() ? 'Past Date' : 'Future Date' }} — Admin will be notified
@endif
{{-- Staff List --}} @php $staff = $this->getStaff(); @endphp @if ($staff->isEmpty()) No active staff found. @else
{{-- Header --}}
Staff ({{ $staff->count() }})
Select All Deselect All
{{-- Staff Checkboxes: 2 cols mobile, 3 tablet, 4 laptop --}}
@foreach ($staff as $member) @endforeach
{{-- Summary + Save --}}
Present: {{ count($presentIds) }} Absent: {{ $staff->count() - count($presentIds) }}
Save Attendance Saving...
@endif