| Full Name |
{{ $patient->first_name ?? $patient->name }} {{ $patient->first_surname ?? '' }} {{ $patient->second_surname ?? '' }} |
CuraLink Patient ID |
{{ $patient->curalink_patient_number ?? 'N/A' }} |
| National ID / NRC |
{{ $patient->national_id ?? 'N/A' }} |
Registration Date |
{{ $patient->registration_date?->format('Y-m-d') ?? 'N/A' }} |
| Gender |
{{ ucfirst($patient->gender) }} |
Date of Birth / Age |
{{ $patient->date_of_birth->format('Y-m-d') }} ({{ $patient->date_of_birth->age }} years old) |
| Phone |
{{ $patient->phone ?? 'N/A' }} |
Residential Address |
{{ $patient->residential_address ?? 'N/A' }}
Village: {{ $patient->village->name ?? 'N/A' }} |
Ward: {{ $patient->ward->name ?? 'N/A' }} |
District: {{ $patient->district->name ?? 'N/A' }}
|
| Marital Status |
{{ ucfirst($patient->marital_status ?? 'N/A') }} |
Education Level |
{{ $patient->educational_level ?? 'N/A' }} |
| Occupation |
{{ $patient->occupation ?? 'N/A' }} |
Dispensary Group |
@if($patient->dispensary_group)
{{ $patient->dispensary_group }}
@else
N/A
@endif
|
| Age of Menarche |
{{ $patient->menarche_age ?? 'N/A' }} years old |
Menstrual Cycle |
{{ $patient->menstrual_cycle ?? 'N/A' }} |
| LMP (Last Menstrual Period) |
{{ $patient->lmp ?? 'N/A' }} |
Pregnancy Status |
{{ $patient->is_pregnant ? 'Pregnant' : 'Not Pregnant' }} |
| Gravida (Pregnancies) |
{{ $patient->gravida ?? '0' }} |
Para (Deliveries) |
{{ $patient->para ?? '0' }} |
| Abortions |
{{ $patient->abortions ?? '0' }} |
Living Children |
{{ $patient->living_children ?? '0' }} |
| Contraceptive Method |
{{ $patient->contraceptive_method ?? 'None' }} |
ANC Gestational Age |
{{ $patient->anc_gestational_age ?? 'N/A' }} weeks |
| ANC Visits Count |
{{ $patient->anc_visits ?? 'N/A' }} |
ANC Risk Factors |
{{ $patient->anc_risk_factors ?? 'None' }} |
@endif
| Tobacco Use |
{{ $patient->tobacco_use ?? 'No' }} |
Alcohol Consumption |
{{ $patient->alcohol_use ?? 'No' }} |
@if($patient->tobacco_use && $patient->tobacco_use != 'no')
| Tobacco Type |
{{ $patient->tobacco_type ?? 'N/A' }} |
Duration / Quantity |
{{ $patient->tobacco_duration ?? 'N/A' }} / {{ $patient->tobacco_quantity ?? 'N/A' }} |
@endif
| Physical Activity Level |
{{ $patient->physical_activity_level ?? 'N/A' }} |
Dietary Pattern Details |
{{ $patient->diet_pattern ?? 'N/A' }} |
| Environmental Risk Factors |
@forelse($patient->environmental_risks ?? [] as $envRisk)
{{ $envRisk }}
@empty
None recorded.
@endforelse
|
Occupational Risk Factors |
@forelse($patient->occupational_risks ?? [] as $occRisk)
{{ $occRisk }}
@empty
None recorded.
@endforelse
|
| Preventive Care |
@forelse(data_get($plan, 'preventive_care', []) as $pc)
{{ $pc }}
@empty
None specified.
@endforelse
|
| Treatment Plan |
Diagnosis: {{ data_get($plan, 'treatment.diagnosis', 'N/A') }}
Medication: {{ data_get($plan, 'treatment.medication', 'N/A') }}
Follow-up: {{ data_get($plan, 'treatment.follow_up', 'N/A') }}
|
| Referral History |
Referred To: {{ data_get($plan, 'referral.referred_to', 'None') }}
Reason: {{ data_get($plan, 'referral.reason', 'N/A') }}
Outcome: {{ data_get($plan, 'referral.outcome', 'N/A') }}
|
@else
No individual care plan established.
@endif