Appointment Book Report
@if(Request::get('data_filter') ) @if ($total == null) appointment booked not found @else Total appointment booked are {{$total}} @endif @else Appointment Book list @endif
| Id | Doctor Name | Patient Name | DateTime | Phone | User Description | Status |
|---|---|---|---|---|---|---|
| {{$doc->id}} | @if ($doc->doctorls) {{$doc->doctorls->name}} @endif | @if ($doc->patientls) {{$doc->patientls->name}} @endif | {{$doc->date}} {{$doc->slot_name}} | {{$doc->phone}} | {{$doc->user_description}} | @if ($doc->status == 0) absent @endif @if ($doc->status == 1) receive @endif @if ($doc->status == 2) approve @endif @if ($doc->status == 3) process @endif @if ($doc->status == 4) completed @endif @if ($doc->status == 5) reject @endif @if ($doc->status == 6) cancel @endif |