| 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);
};
@endphp
Basic Information
| Parameter |
Value |
| Ukuran tinggi (cm) |
{{ $getData('height') ?: 'Not recorded' }} |
| BMI semasa booking |
{{ $getData('bmi') ?: 'Not recorded' }} |
PEMERIKSAAN RUTIN KESIHATAN (RME 1)
| Parameter |
Value |
| Tarikh |
{{ $getData('rme1_date') ? \Carbon\Carbon::parse($getData('rme1_date'))->format('d/m/Y') : 'Not recorded' }} |
General Examination
| Parameter |
Value |
| Pink Pallor |
{{ $getData('rme1_pink_pallor') ?: 'Not recorded' }} |
| Jaundice |
{{ $getData('rme1_jaundice') ?: 'Not recorded' }} |
| BP (mmHg) |
{{ $getData('rme1_bp') ?: 'Not recorded' }} |
| Pulse (per min) |
{{ $getData('rme1_pulse') ?: 'Not recorded' }} |
| Neck Swelling |
{{ $getData('rme1_neck_swelling') ?: 'Not recorded' }} |
| Clubbing |
{{ $getData('rme1_clubbing') ?: 'Not recorded' }} |
Cardiovascular System
| Parameter |
Value |
| JVP |
{{ $getData('rme1_jvp') ?: 'Not recorded' }} |
| Apex Beat |
{{ $getData('rme1_apex_beat') ?: 'Not recorded' }} |
| Heart Sounds |
{{ $getData('rme1_heart_sounds') ?: 'Not recorded' }} |
Respiratory System
| Parameter |
Value |
| Breast |
{{ $getData('rme1_breast') ?: 'Not recorded' }} |
| Lungs |
{{ $getData('rme1_lungs') ?: 'Not recorded' }} |
Abdominal Examination
| Parameter |
Value |
| Abdomen |
{{ $getData('rme1_abdomen') ?: 'Not recorded' }} |
| SFH (cm) |
{{ $getData('rme1_sfh') ?: 'Not recorded' }} |
| FHR (per min) |
{{ $getData('rme1_fhr') ?: 'Not recorded' }} |
Lower Limbs
| Parameter |
Value |
| Oedema |
{{ $getData('rme1_oedema') ?: 'Not recorded' }} |
| Calf Tenderness |
{{ $getData('rme1_calf_tenderness') ?: 'Not recorded' }} |
@if($getData('rme1_notes'))
Notes
{{ $getData('rme1_notes') }}
@endif
Medical Officer Information
| Parameter |
Value |
| Medical Officer Name |
{{ $getData('medical_officer_name') ?: 'Not recorded' }} |
@if($getData('medical_officer_signature'))
Medical Officer Signature:
@endif
Dental Examination
| Parameter |
Value |
| Examination Date |
{{ $getData('dental_date') ? \Carbon\Carbon::parse($getData('dental_date'))->format('d/m/Y') : 'Not recorded' }} |
| Dental Officer Name |
{{ $getData('dental_officer_name') ?: 'Not recorded' }} |
@if($getData('dental_notes'))
Dental Notes:
{{ $getData('dental_notes') }}
@endif
@if($getData('dental_officer_signature'))
Dental Officer Signature:
@endif
@if($testResult && ($testResult->performedByNurse || $testResult->signature_data))
Nurse Information
| Nurse Name: |
{{ $testResult->performedByNurse->name ?? 'N/A' }} |
| Date Recorded: |
{{ $testResult->performed_at ? $testResult->performed_at->format('d/m/Y H:i') : 'N/A' }} |
@if($testResult->signature_data)
@endif
@endif