@extends('layout.admin_layout')
@section('title', 'Previous Appointments List')
@section('body')
@section('header', 'Previous Appointments List')
@section('badge')
@endsection
| No |
DateTime |
Doctor |
Status |
Action |
@foreach($appointments as $key=>$u_d)
|
{{$key+1}}
|
{{date('m-d-Y',strtotime($u_d->date))}} |
Dr. {{$u_d->doctor->last_name}} |
@if($u_d->status == 1)
CNA |
@elseif($u_d->status == 2)
Completed |
@else
Cancelled |
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush