MOTHER PROFILE OVERVIEW

BondaCare Maternal Healthcare System

Generated on: {{ now()->format('F d, Y h:i A') }}

@if($profile)
Full Name
{{ $profile->mother_full_name ?? $user->name }}
Series Number
{{ $profile->series_number }}
Assigned Clinic
{{ $user->clinic->name ?? 'Not assigned' }}
Email
{{ $user->email }}
@if($profile->phone_number)
Phone
{{ $profile->phone_number }}
@endif
MOTHER INFORMATION
IC Number
{{ $profile->ic_number ?? 'Not provided' }}
Ethnicity
{{ $profile->ethnicity ?? 'Not provided' }}
Nationality
{{ $profile->nationality ?? 'Not provided' }}{{ $profile->nationality === 'Foreigner' && $profile->nationality_other ? ' (' . $profile->nationality_other . ')' : '' }}
Educational Level
{{ $profile->educational_level ? ucwords($profile->educational_level) : 'Not provided' }}
Occupation
{{ $profile->occupation ?? 'Not provided' }}
@if($profile->home_address || $profile->family_home_address || $profile->work_address || $profile->postnatal_address)
Addresses:
@if($profile->home_address)
Home Address
{{ $profile->home_address }}
@endif @if($profile->family_home_address)
Family Home Address
{{ $profile->family_home_address }}
@endif @if($profile->work_address)
Work Address
{{ $profile->work_address }}
@endif @if($profile->postnatal_address)
Postnatal Address
{{ $profile->postnatal_address }}
@endif
@endif
@if($profile->husband_full_name || $profile->husband_ic_number || $profile->husband_occupation || $profile->husband_work_address || $profile->husband_phone_number)
HUSBAND INFORMATION
@if($profile->husband_full_name)
Full Name
{{ $profile->husband_full_name }}
@endif @if($profile->husband_ic_number)
IC Number
{{ $profile->husband_ic_number }}
@endif @if($profile->husband_occupation)
Occupation
{{ $profile->husband_occupation }}
@endif @if($profile->husband_phone_number)
Phone Number
{{ $profile->husband_phone_number }}
@endif @if($profile->husband_work_address)
Work Address
{{ $profile->husband_work_address }}
@endif
@endif
GENERAL INFORMATION
@if($profile->number_of_fetus)
Number of Fetus
{{ $profile->number_of_fetus }}
@endif @if($profile->number_of_living_children)
Number of Living Children
{{ $profile->number_of_living_children }}
@endif @if($profile->marriage_date)
Marriage Date
{{ \Carbon\Carbon::parse($profile->marriage_date)->format('F j, Y') }}
@endif @if($profile->menache)
Menache
{{ $profile->menache }}
@endif @if($profile->family_planning_method !== null)
Family Planning Method
{{ $profile->family_planning_method ? 'Yes' : 'No' }}{{ $profile->family_planning_method && $profile->family_planning_method_specify ? ' (' . $profile->family_planning_method_specify . ')' : '' }}
@endif @if($profile->mother_smoking_status)
Mother Smoking Status
{{ $profile->mother_smoking_status }}
@endif @if($profile->husband_smoking_status)
Husband Smoking Status
{{ $profile->husband_smoking_status }}
@endif @if($profile->tibi_screening_cough !== null)
Tibi Screening (Cough > 2 weeks)
{{ $profile->tibi_screening_cough ? 'Yes' : 'No' }}
@endif
FAMILY HEALTH
Mother: @php $motherConditions = []; $conditions = ['diabetes', 'hipertension', 'allergy', 'psychiatry', 'asthma', 'heart_disease', 'tibi', 'anemia', 'thalasemia', 'tiroid', 'cancer']; foreach($conditions as $condition) { if($profile->{'mother_' . $condition}) { $motherConditions[] = ucfirst(str_replace('_', ' ', $condition)); } } if($profile->mother_other && $profile->mother_other_specify) { $motherConditions[] = $profile->mother_other_specify; } @endphp @if(count($motherConditions) > 0)
    @foreach($motherConditions as $condition)
  • {{ $condition }}
  • @endforeach
@else

No conditions reported

@endif
Father: @php $fatherConditions = []; foreach($conditions as $condition) { if($profile->{'father_' . $condition}) { $fatherConditions[] = ucfirst(str_replace('_', ' ', $condition)); } } if($profile->father_other && $profile->father_other_specify) { $fatherConditions[] = $profile->father_other_specify; } @endphp @if(count($fatherConditions) > 0)
    @foreach($fatherConditions as $condition)
  • {{ $condition }}
  • @endforeach
@else

No conditions reported

@endif
BABY RECORDS ({{ $babies->count() }})
@if($babies->count() > 0) @foreach($babies as $baby) @endforeach
Birth Date Outcome Delivery Place Gender Weight Breastfeeding Condition
{{ $baby->month_name }} {{ $baby->year_of_birth }} {{ ucfirst($baby->pregnancy_outcome) }} {{ $baby->type_of_deliver }} {{ $baby->deliver_place }} {{ $baby->gender }} {{ $baby->formatted_weight }} {{ $baby->breastfeeding }} {{ $baby->baby_condition }} @if($baby->baby_condition === 'Unhealthy' && $baby->condition_notes)
{{ $baby->condition_notes }} @endif
@else
No baby records found
@endif
@else
Profile information not available. Please complete your profile.
@endif