Email: {{ $patient->email }}
Phone: {{ $patient->phone }}
Date of Birth: {{ $patient->dob }}
Gender: {{ $patient->gender }}
Address: {{ $patient->address }}
| Service | Status | Created At | Video |
|---|---|---|---|
| {{ $service->name }} | {{ $service->pivot->status }} | {{ $service->pivot->created_at ? \Carbon\Carbon::parse($service->pivot->created_at)->format('F j, Y H:i') : 'N/A' }} |
@if($service->pivot->video_path)
|
| Type | Date | Details |
|---|---|---|
| {{ $record->record_type }} | {{ $record->date->format('Y-m-d') }} | {{ $record->details }} |
| Date | Status | Doctor | Notes |
|---|---|---|---|
| {{ $consultation->formatDateTime('scheduled_at', 'Y-m-d H:i') }} | {{ $consultation->status }} | {{ $consultation->doctor->name }} | {{ $consultation->notes }} |
| Date | Medication | Dosage | Instructions |
|---|---|---|---|
| {{ $prescription->created_at->format('Y-m-d') }} | {{ $prescription->medication }} | {{ $prescription->dosage }} | {{ $prescription->instructions }} |