Vital Signs
Latest triage observations and measurements
TRIAGE SNAPSHOT
@php $vitals = [ [ 'label' => 'Temperature', 'short' => 'TEMP', 'value' => !is_null($encounter->temperature) ? $encounter->temperature . ' °C' : '—', ], [ 'label' => 'Pulse Rate', 'short' => 'PULSE', 'value' => !is_null($encounter->pulse_rate) ? $encounter->pulse_rate . ' bpm' : '—', ], [ 'label' => 'Respiratory', 'short' => 'RESP', 'value' => !is_null($encounter->respiratory_rate) ? $encounter->respiratory_rate . '/min' : '—', ], [ 'label' => 'Oxygen', 'short' => 'SpO₂', 'value' => !is_null($encounter->spo2) ? $encounter->spo2 . '%' : '—', ], [ 'label' => 'Blood Pressure', 'short' => 'BP', 'value' => ( !is_null($encounter->systolic_bp) || !is_null($encounter->diastolic_bp) ) ? ($encounter->systolic_bp ?? '—') . '/' . ($encounter->diastolic_bp ?? '—') : '—', ], [ 'label' => 'Weight', 'short' => 'WT', 'value' => !is_null($encounter->weight_kg) ? $encounter->weight_kg . ' kg' : '—', ], [ 'label' => 'Height', 'short' => 'HT', 'value' => !is_null($encounter->height_cm) ? $encounter->height_cm . ' cm' : '—', ], [ 'label' => 'BMI', 'short' => 'BMI', 'value' => !is_null($encounter->bmi) ? $encounter->bmi : '—', ], ]; @endphp
@foreach($vitals as $vital)
{{ $vital['short'] }}
{{ $vital['value'] }}
{{ $vital['label'] }}
@endforeach