@php // Helper function to get test data value $getData = function($key, $default = '') use ($testResult) { if (!$testResult || !$testResult->test_data) return $default; return data_get($testResult->test_data, $key, $default); }; // Helper function to format date $formatDate = function($date) { if (!$date) return '-'; try { return \Carbon\Carbon::parse($date)->format('d/m/Y'); } catch (\Exception $e) { return '-'; } }; @endphp

Pre-Eclampsia Profile

Profil Risiko Pre-Eclampsia

@php $date = $getData('date'); $poaPog = $getData('poa_pog'); $bp = $getData('bp'); $proteinuria = $getData('proteinuria'); $urea = $getData('urea'); $creatinine = $getData('creatinine'); $uricAcid = $getData('uric_acid'); $hemoglobin = $getData('hemoglobin'); $platelet = $getData('platelet'); $astAlt = $getData('ast_alt'); $additionalNotes = $getData('additional_notes'); $hasData = $date || $bp || $proteinuria || $urea || $creatinine || $uricAcid || $hemoglobin || $platelet || $astAlt; @endphp @if($hasData)

Nota Penting

Untuk: Ibu yang mengalami Hipertensi

Tujuan: Pemantauan profil pre-eclampsia untuk mengesan komplikasi awal

Date & Gestational Age

Tarikh pemeriksaan dan jangkamasa kandungan

@if($date) {{ $formatDate($date) }} @else Not recorded @endif
{{ $poaPog ?: 'Not recorded' }}

Blood Pressure

Tekanan darah

@if($bp) {{ $bp }} mmHg @else Not recorded @endif

Normal: <140/90 mmHg | Pre-eclampsia: ≥140/90 mmHg

Urine Test

Ujian air kencing

@if($proteinuria) {{ $proteinuria }} @else Not recorded @endif

Normal: Negative or Trace | Pre-eclampsia: ≥+1

Kidney Function Tests

Ujian fungsi buah pinggang

@if($urea) {{ $urea }} mmol/L @else Not recorded @endif

Normal: 2.5-7.5 mmol/L

@if($creatinine) {{ $creatinine }} μmol/L @else Not recorded @endif

Normal: 45-90 μmol/L

@if($uricAcid) {{ $uricAcid }} μmol/L @else Not recorded @endif

Normal: 150-350 μmol/L

Blood Tests

Ujian darah

@if($hemoglobin) {{ $hemoglobin }} g/dL @else Not recorded @endif

Normal: 11-14 g/dL

@if($platelet) {{ $platelet }} ×10⁹/L @else Not recorded @endif

Normal: 150-400 ×10⁹/L

Liver Function Test

Ujian fungsi hati

@if($astAlt) {{ $astAlt }} @else Not recorded @endif

Normal: AST <40 U/L, ALT <40 U/L

Simptom Severe Pre-Eclampsia

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($additionalNotes)

Additional Notes

Catatan tambahan

{{ $additionalNotes }}
@endif @else

No pre-eclampsia monitoring data recorded yet

@endif
Back to Health Record