@if(session()->has('success'))
{{session()->get('success')}}
@endif
Patient |
Doctor |
Department |
Date/Time |
Status |
Actions |
Delete |
@foreach($appointments as $appointment)
{{$appointment->patient->first_name}} |
{{$appointment->doctor->first_name}} |
{{$appointment->department->name}} |
{{$appointment->date.' / '.$appointment->time}} |
{{$appointment->status}} |
|
|
@endforeach
Patient |
Doctor |
Department |
Date/Time |
Actions |
Delete |
@foreach($pendingAppointments as $appointment)
{{$appointment->patient->first_name}} |
{{$appointment->doctor->first_name}} |
{{$appointment->department->name}} |
{{$appointment->date.' / '.$appointment->time}} |
|
|
@endforeach
Patient |
Doctor |
Department |
Date/Time |
Actions |
Delete |
@foreach($confirmedAppointments as $appointment)
{{$appointment->patient->first_name}} |
{{$appointment->doctor->first_name}} |
{{$appointment->department->name}} |
{{$appointment->date.' / '.$appointment->time}} |
|
|
@endforeach
Patient |
Doctor |
Department |
Date/Time |
Actions |
Delete |
@foreach($treatedAppointments as $appointment)
{{$appointment->patient->first_name}} |
{{$appointment->doctor->first_name}} |
{{$appointment->department->name}} |
{{$appointment->date.' / '.$appointment->time}} |
|
|
@endforeach
Patient |
Doctor |
Department |
Date/Time |
Actions |
Delete |
@foreach($cancelledAppointments as $appointment)
{{$appointment->patient->first_name}} |
{{$appointment->doctor->first_name}} |
{{$appointment->department->name}} |
{{$appointment->date.' / '.$appointment->time}} |
|
|
@endforeach
@endsection
@section('scripts')
@endsection