CuraLink Electronic Health Record
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
Emergency Contact Details
Contact Name {{ $patient->emergency_contact_name ?? 'N/A' }} Relationship {{ $patient->emergency_contact_relationship ?? 'N/A' }}
Phone Number {{ $patient->emergency_contact_phone ?? 'N/A' }} Contact Address {{ $patient->emergency_contact_address ?? 'N/A' }}
Personal Medical History
Pre-existing Chronic Diseases @forelse($patient->medical_history_diseases ?? [] as $disease) {{ $disease }} @empty No chronic diseases recorded. @endforelse
Diagnosis Date / Details @if($patient->medical_history_diagnosis_date) Diagnosis Date: {{ $patient->medical_history_diagnosis_date }}
@endif {{ $patient->medical_history_details ?? 'No additional details recorded.' }}
Surgical History @forelse($patient->surgical_history ?? [] as $surg) {{ $surg['procedure'] ?? 'N/A' }} ({{ $surg['year'] ?? 'N/A' }}) - {{ $surg['hospital'] ?? 'N/A' }} @if(!empty($surg['complications'])) | Complications: {{ $surg['complications'] }} @endif
@empty No surgical history recorded. @endforelse
Allergies & Current Medications
Drug Allergies {{ $patient->drug_allergies ?? 'None' }} Food Allergies {{ $patient->food_allergies ?? 'None' }}
Other Allergies {{ $patient->other_allergies ?? 'None' }} Allergy Reaction Details {{ $patient->allergy_reaction ?? 'N/A' }}
Current Medications @forelse($patient->current_medications ?? [] as $med) {{ $med['medication'] ?? 'N/A' }} (Dose: {{ $med['dose'] ?? 'N/A' }} | Freq: {{ $med['frequency'] ?? 'N/A' }} | Reason: {{ $med['reason'] ?? 'N/A' }})
@empty No active medications listed. @endforelse
Medication Adherence @if($patient->medication_adherence) Adherence Status: {{ $patient->medication_adherence }}
@if($patient->medication_adherence_reason) Reason: {{ $patient->medication_adherence_reason }} @endif @else N/A @endif
CuraLink Clinical Record - {{ $patient->name }}
Immunization History
@forelse($patient->immunization_history ?? [] as $imm) @empty @endforelse
Immunization / Vaccine Status
{{ $imm }} Completed
No immunizations recorded.
@if($patient->gender == 'female')
Reproductive Health History
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
Lifestyle & Environment Assessment
@if($patient->tobacco_use && $patient->tobacco_use != 'no') @endif
Tobacco Use {{ $patient->tobacco_use ?? 'No' }} Alcohol Consumption {{ $patient->alcohol_use ?? 'No' }}
Tobacco Type {{ $patient->tobacco_type ?? 'N/A' }} Duration / Quantity {{ $patient->tobacco_duration ?? 'N/A' }} / {{ $patient->tobacco_quantity ?? 'N/A' }}
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
Physiological Vitals
Height {{ $patient->height ? $patient->height . ' cm' : 'N/A' }} Weight {{ $patient->weight ? $patient->weight . ' kg' : 'N/A' }}
BMI (Body Mass Index) {{ $patient->bmi ?? 'N/A' }} Waist Circumference {{ $patient->waist_circumference ? $patient->waist_circumference . ' cm' : 'N/A' }}
Individual Clinical Care Plan
@php $plan = $patient->individual_care_plan ?? []; @endphp @if(!empty($plan))
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