@extends('layouts.admin')
@section('header')
Work Schedule Calendar
@endsection
@section('content')
@if(\App\Models\User::where('role', 'staff')->count() == 0)
â ī¸ Warning: No staff users found. You need to create staff users first before adding schedules.
@endif
@if(count($mappedSchedules) == 0)
âšī¸ Info: No schedules found. Click "+ Add Schedule" to create your first shift.
@endif
đ Shift Details
@endsection
@section('scripts')
@endsection