Patient ID: {{ $patient->patient_id }}
{{ $patient->age }} years old • {{ ucfirst($patient->gender) }}
{{ $patient->email ?? 'N/A' }}
{{ $patient->phone ?? 'N/A' }}
{{ $patient->date_of_birth->format('M d, Y') }}
{{ $patient->blood_type ?? 'N/A' }}
{{ $patient->height ? $patient->height . ' cm' : 'N/A' }}
{{ $patient->weight ? $patient->weight . ' kg' : 'N/A' }}
{{ $patient->display_address ?? 'N/A' }}
{{ $patient->medical_history }}
{{ $patient->allergies }}
{{ $patient->medical_history }}
{{ $patient->allergies }}
No medical history recorded yet.
@endif @endif{{ $record->visit_date->format('M d, Y') }} • Dr. {{ ucwords(strtolower($record->doctor->name)) }}
{{ $record->symptoms }}
{{ $record->diagnosis }}
{{ $record->treatment_plan }}
{{ $record->notes }}
{{ $record->follow_up_date->format('M d, Y') }}
No medical records found.
@endifby {{ $log->user ? ucwords(strtolower($log->user->name)) : 'System' }} @if($log->visit) • Visit: {{ $log->visit->visit_number }} @endif • {{ $log->created_at->format('M d, Y h:i A') }}
{{ strlen($log->old_value) > 200 ? substr($log->old_value, 0, 200) . '...' : $log->old_value }}
{{ strlen($log->new_value) > 200 ? substr($log->new_value, 0, 200) . '...' : $log->new_value }}
No change history recorded yet.
@endif{{ $appointment->appointment_date->format('M d, Y') }} at {{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}
Dr. {{ ucwords(strtolower($appointment->doctor->name)) }} • {{ $appointment->duration }} minutes
@if($appointment->reason)Reason: {{ $appointment->reason }}
@endifNo appointments found.
@endif{{ $prescription->prescription_date->format('M d, Y') }} by Dr. {{ ucwords(strtolower($prescription->doctor->name)) }}
Dosage: {{ $prescription->dosage }}
Frequency: {{ $prescription->frequency }}
Duration: {{ $prescription->duration }}
Instructions: {{ $prescription->instructions }}
@endifNo prescriptions found.
@endif{{ $patient->display_emergency_contact_name ?? 'N/A' }}
{{ $patient->emergency_contact_phone }}
{{ $patient->display_insurance_provider ?? 'N/A' }}
{{ $patient->insurance_number }}