@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Slots Availability
@csrf
Schedule
@if (session()->has('message'))
{{ session('message') }}
@elseif (session()->has('error'))
{{ session('error') }}
@endif @foreach ($slots as $index => $slot)
Day
day) }}" required readonly /> @if ($errors->has("slots.$index.day"))
{{ $errors->first("slots.$index.day") }}
@endif
Start Time
start_time) }}" /> @if ($errors->has("slots.$index.start_time"))
{{ $errors->first("slots.$index.start_time") }}
@endif
End Time
end_time) }}" /> @if ($errors->has("slots.$index.end_time"))
{{ $errors->first("slots.$index.end_time") }}
@endif
Status
status == 1 ? 'checked' : '' }} />
@endforeach
Save Attribute
@include('partials.footer')
@include('global.footer-links')