{{ $user->name }}'s Appointment History

@if ($appointments->isEmpty())

This user has no appointment history.

@else @foreach ($appointments as $appointment) @endforeach
Date Time Doctor Status
{{ $appointment->appointment_date }} {{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }} {{ $appointment->doctor->name }} {{ $appointment->status }}
@endif