@extends('reports.pdf.layout') @section('content')
| Appointment | Date | Time | Doctor | Patient | Type | Status | Payment |
|---|---|---|---|---|---|---|---|
| {{ $a->appointment_number }} | {{ $a->appointment_date?->format('Y-m-d') }} | {{ $a->start_time }} - {{ $a->end_time }} | {{ $a->doctor?->user?->name }} | {{ $a->patient?->user?->name }} | {{ ucfirst($a->consultation_type) }} | {{ ucfirst($a->status) }} | {{ ucfirst($a->payment_status) }} |