@inject('request', 'Illuminate\Http\Request') @extends('layouts.app') @section('content')
| Appointment | Name | Mobile | Doctor | Status | Appointment Time | Appointment Date | ||
|---|---|---|---|---|---|---|---|---|
| {{$category->appointment_no ?? ''}} | {{ $category->Appointmentdetail->name ?? '' }} | {{ $category->Appointmentdetail->mobile ?? '' }} td> | {{ $category->Appointmentdetail->email ?? ''}} | {{$category->doctor->name ?? ''}} | @if($category->status==0) @elseif($category->status==1) Accept @elseif($category->status==3) Completed @elseif($category->status==4) Cancelled @else Rescheduled @endif | {{$category->slot->start_time ?? ''}} | @if($category->date!='' && $category->date!='0000-00-00 00:00:00') {{date('d-m-Y',strtotime($category->date)) ?? ''}}@endif | |
| @lang('global.app_no_entries_in_table') | ||||||||