@extends('users.admin.layouts.master') @section('styles') @endsection @section('content')

Time Schedules List {{isset($doctor) ? '( For Doctor : '.$doctor->first_name.' '.$doctor->last_name.')' : ''}}

#Page-ID
@if(session()->has('success')) @endif

Time Schedules List

@if(isset($doctor)) @foreach($doctor->timeSchedules as $timeschedule) @endforeach @else @foreach($timeschedules as $timeschedule) @endforeach @endif
Week Day Start Time End Time Appointment Duration Doctor Name Actions Delete
{{$timeschedule->week_day}} {{$timeschedule->start_time}} {{$timeschedule->end_time}} {{$timeschedule->duration.' Minute'}} {{$timeschedule->user->first_name}}
@method('DELETE') @csrf
{{$timeschedule->week_day}} {{$timeschedule->start_time}} {{$timeschedule->end_time}} {{$timeschedule->duration.' Minute'}} {{$timeschedule->user->first_name}}
@method('DELETE') @csrf
@endsection @section('scripts') @endsection