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

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

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

Dayoff Schedules List

@csrf
@foreach($dayoffschedules as $dayoffschedule) @endforeach
Doctor Date Actions Delete
{{$dayoffschedule->user->first_name.' '.$dayoffschedule->user->last_name}} {{$dayoffschedule->date}}
@method('DELETE') @csrf
@endsection @section('scripts') @endsection