BondaCare

Maternal Health Management System
PRE-ECLAMPSIA PROFILE
Patient Name: {{ $record->mother->expectantMother->mother_full_name ?? $record->mother->name }} IC Number: {{ $record->mother->expectantMother->ic_number ?? 'N/A' }}
Visit Date: {{ $record->visit_date->format('d/m/Y') }} Color Code: {{ strtoupper($record->mother->expectantMother->current_color_code ?? $record->mother->expectantMother->color_code ?? 'WHITE') }}
@php $getData = function($key, $default = '') use ($testResult) { if (!$testResult || !$testResult->test_data) return $default; return data_get($testResult->test_data, $key, $default); }; $formatDate = function($date) { if (!$date) return '-'; try { return \Carbon\Carbon::parse($date)->format('d/m/Y'); } catch (\Exception $e) { return '-'; } }; @endphp
⚠️ Nota Penting

Untuk: Ibu yang mengalami Hipertensi

Tujuan: Pemantauan profil pre-eclampsia untuk mengesan komplikasi awal

Date & Gestational Age
Parameter Value
Tarikh (Date) {{ $formatDate($getData('date')) }}
POA/POG (Gestational Age) {{ $getData('poa_pog') ?: 'Not recorded' }}
Blood Pressure
BP (Blood Pressure) {{ $getData('bp') ?: 'Not recorded' }} mmHg
Normal: <140/90 mmHg | Pre-eclampsia: ≥140/90 mmHg
Urine Test
Proteinuria (Urine Protein) {{ $getData('proteinuria') ?: 'Not recorded' }}
Normal: Negative or Trace | Pre-eclampsia: ≥+1
Kidney Function Tests
Test Value
Urea {{ $getData('urea') ?: 'Not recorded' }} mmol/L
Normal: 2.5-7.5 mmol/L
Creatinine {{ $getData('creatinine') ?: 'Not recorded' }} μmol/L
Normal: 45-90 μmol/L
Uric Acid {{ $getData('uric_acid') ?: 'Not recorded' }} μmol/L
Normal: 150-350 μmol/L
Blood Tests
Test Value
Hemoglobin (Hb) {{ $getData('hemoglobin') ?: 'Not recorded' }} g/dL
Normal: 11-14 g/dL
Platelet {{ $getData('platelet') ?: 'Not recorded' }} ×10⁹/L
Normal: 150-400 ×10⁹/L
Liver Function Test
AST/ALT (Liver Enzymes) {{ $getData('ast_alt') ?: 'Not recorded' }}
Normal: AST <40 U/L, ALT <40 U/L
⚠️ Simptom Severe Pre-Eclampsia
Beri peringatan kepada ibu untuk segera ke hospital/klinik sekiranya ada salah satu tanda berikut:

• Sakit kepala (Severe headache)

• Penglihatan kabur/berpinar (Blurred vision)

• Loya/muntah (Nausea/vomiting)

• Pedih ulu hati (Epigastric pain)

@if($getData('additional_notes'))
Additional Notes
{{ $getData('additional_notes') }}
@endif @if($testResult && ($testResult->performedByNurse->name || $testResult->signature_data))
Nurse Information
Nurse Name: {{ $testResult->performedByNurse->name ?? 'N/A' }}
Date Recorded: {{ $testResult->performed_at ? \Carbon\Carbon::parse($testResult->performed_at)->format('d/m/Y H:i') : 'N/A' }}
@if($testResult->signature_data)
Signature:
Nurse Signature
@endif
@endif