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