@extends('layouts.app') @section('title', 'My Appointments') @section('content')

My Appointments

Back to Dashboard
@foreach($appointments as $appointment) @endforeach
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) }}
@endsection