@extends('layouts.app') @section('content')
| Appointment | Date & Time | Doctor | Patient | Specialty | Type | Status |
|---|---|---|---|---|---|---|
| {{ $appointment->appointment_number }} | {{ $appointment->appointment_date?->format('d M Y') }} {{ $appointment->start_time }} - {{ $appointment->end_time }} |
{{ $appointment->doctor?->user?->name }} | {{ $appointment->patient?->user?->name }} | {{ $appointment->doctor?->specialty?->name }} | {{ ucfirst($appointment->consultation_type) }} | {{ ucfirst($appointment->status) }} |
| No appointments found. | ||||||