@extends('layouts.app') @section('title', 'My Appointments') @section('content')
| Date | Type | Doctor | Branch | Status |
|---|---|---|---|---|
| {{ $appointment->appointment_date->format('M d, Y H:i') }} | {{ $appointment->consultation_type }} | {{ $appointment->doctor ? $appointment->doctor->full_name : 'N/A' }} | {{ $appointment->branch->name }} | {{ ucfirst($appointment->status) }} |