@extends('layouts.doctor') @section('title', 'My Availability') @section('header', 'Duty Roster Management') @section('content')

Clinical Schedule

Update your practice hours for {{ $doctor->branch->name }}

@csrf
@if ($errors->any())
Validation Error
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($days as $dayNum => $dayName) @php $sched = $schedules->get($dayNum); @endphp
{{ $dayName }}
to
@endforeach
@endsection