#PT{{ str_pad($patient->id, 4, '0', STR_PAD_LEFT) }}
{{ $user->name }}
{{ $patient->address ?: 'Address not provided' }}
Phone : {{ $patient->phone ?: 'Not provided' }}
|Last Visited : {{ $user->updated_at->format('d M Y') }}
About
DOB
{{ $patient->date_of_birth ? $patient->date_of_birth->format('d M Y') : 'Not provided' }}
Blood Group
{{ $patient->blood_group ?? 'Not provided' }}
Gender
{{ $patient->gender ? ucfirst($patient->gender) : 'Not specified' }}
{{ $user->email }}
Patient Information
Age
{{ $this->getAge() ? $this->getAge() . ' years' : 'N/A' }}
Status
{{ ucfirst($user->status) }}
Clinics
{{ $patientClinics->count() }}
City
{{ $patient->city ?: 'N/A' }}
Registered
{{ $user->created_at->format('M Y') }}
Patient ID
#PT{{ str_pad($patient->id, 4, '0', STR_PAD_LEFT) }}
| Clinic Name | Doctor | Status | Approval | Added Date | |
|---|---|---|---|---|---|
{{ $association->clinic->name ?? 'Unknown Clinic' }}{{ $association->clinic->address ?? '' }} |
@if ($association->doctor && $association->doctor->doctor && $association->doctor->doctor->profile_image)
{{ $this->getInitials($association->doctor->name) }}
@else
{{ $association->doctor->name ?? 'Unknown Doctor' }}Doctor |
{{ ucfirst($association->status) }} | {{ ucfirst($association->approval_status) }} | {{ $association->created_at->format('d M Y') }} | {{----}} |
Medical History
{{ $patient->medical_history }}