Age/Gender
|
@if(isset($patient->account_contact->date_of_birth) && !empty($patient->account_contact->date_of_birth))
{{ age($patient->account_contact->date_of_birth) . ' Years' }}
@else
Please Add Patient Day of Birth.
@endif
@if(isset($patient->account_contact->gender->name) && !empty($patient->account_contact->gender->name))
, {{ $patient->account_contact->gender->name ?? '' }}
@else
Please Add Patient Gender.
@endif
|
DOB |
@if(isset($patient->account_contact->date_of_birth) && !empty($patient->account_contact->date_of_birth))
{{ formatedDate($patient->account_contact->date_of_birth) ?? '' }}
@endif
|
Patient Contact |
@if(isset($patient->account_contact->phone_no) && !empty($patient->account_contact->phone_no))
{{ $patient->account_contact->phone_no ?? '' }}
@else
Please Add Patient Contact.
@endif
|
Marital Status |
@if(isset($marital_status->name ) && !empty($marital_status->name ))
{{ $marital_status->name ?? '' }}
@else
Please Add Patient Marital Status.
@endif
|
Blood Group |
@if(isset($blood_group->group) && !empty($blood_group->group))
{{ $blood_group->group ?? '' }}
@else
Please Add Patient Blood Group.
@endif
|
{{--
Relation |
@if(isset($patient->account_relative->relation_type) && !empty($patient->account_relative->relation_type))
{{ $patient->account_relative->relation_type ?? '' }}
@else
Please Add Patient Relation.
@endif
|
--}}
Relative Name |
@if(isset($patient->account_relative->relation_name) && !empty($patient->account_relative->relation_name))
{{ $patient->account_relative->relation_name ?? '' }}
@if(isset($patient->account_relative->relation_type) && !empty($patient->account_relative->relation_type))
{{ $patient->account_relative->relation_type ?? '' }}
@endif
({{ $patient->account_contact->phone_no ?? '' }})
@else
Please Add Patient Relative Name.
@endif
|
{{--
Previous medical issue |
{{ $admission->previous_medical_issue ?? 'N/A' }} |
--}}
@if ($patient->account_contact->any_known_allergies)
Any Known Allergies |
{{ $patient->account_contact->any_known_allergies }} |
@endif
@if ($admission->note)
Admission Note |
{{ $admission->note }} |
@endif
@if (in_array('nurse-notes-list', $authRolePermissions))
Nurse Notes |
Nurse Notes |
@endif