My Appointments

@if(session('success'))
{{ session('success') }}
@endif
@forelse($appointments as $appointment) @empty @endforelse
Doctor Specialization Date Time Reason Status Action
{{ $appointment->doctor->name }} {{ $appointment->doctor->specialization }} {{ $appointment->appointment_date }} {{ $appointment->appointment_time }} {{ $appointment->reason ?? '-' }} {{ ucfirst($appointment->status) }}
@csrf @method('PATCH')
You have no appointments yet.