@extends('layouts.app') @section('content') @php $age = null; if (!empty($encounter->date_of_birth)) { $age = \Carbon\Carbon::parse( $encounter->date_of_birth )->age; } $existingBmi = null; if ( !empty($triage->height_cm) && !empty($triage->weight_kg) ) { $heightMeters = $triage->height_cm / 100; if ($heightMeters > 0) { $existingBmi = round( $triage->weight_kg / ($heightMeters * $heightMeters), 2 ); } } @endphp

Triage Assessment

Vital signs, emergency screening and workflow routing
Patient
{{ $encounter->first_name }} {{ $encounter->last_name }}
Sex
{{ $encounter->gender ?? '—' }}
Age
{{ $age ? $age . ' years' : '—' }}
Patient No
{{ $encounter->patient_no }}
Visit No
{{ $encounter->visit_no }}
Visit Type
{{ ucfirst( $encounter->visit_type ?? 'Medical' ) }}
@if ($errors->any())
Please correct the following:
@endif
@csrf
Vital Signs
Anthropometrics
NCD Screening
@php $conditions = [ 'known_hypertension' => 'Hypertension', 'known_diabetes' => 'Diabetes', 'asthma_copd' => 'Asthma / COPD', 'epilepsy_history' => 'Epilepsy', 'heart_disease' => 'Heart Disease', 'sickle_cell_disease' => 'Sickle Cell Disease' ]; @endphp @foreach($conditions as $field => $label) @endforeach
Risky Behaviours
@php $behaviours = [ 'smoker' => 'Tobacco Smoking', 'alcohol_use' => 'Alcohol Use', 'substance_use' => 'Substance / Drug Use' ]; @endphp @foreach($behaviours as $field => $label) @endforeach
Clinical Notes
Back to Queue
@endsection