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