@if(!are_symptoms_on_consultation())
@endif
@if ($discharge_mortality && between($age_diff_months, 0, 6) && is_smart_discharge_enabled())
Post Discharge Mortality Risk |
| {{ Form::label('hospital_travel_duration', 'How long did it take you to travel to the hospital?') }} |
@php $arr = ['1' => '< 30 mins','2' => '30 mins – 1 hour','3' => '1 - 4 hours','4' => '> 4 hours']; @endphp
{{ $discharge_mortality->hospital_travel_duration_below_6 ? $arr[$discharge_mortality->hospital_travel_duration_below_6] : "Not Recorded" }}
|
| {{ Form::label('illness_duration', 'What is the duration of the present illness at the time of admission?') }} |
@php $arr = ['1' => '< 48 hours','2' => '48 hours - 7 days','3' => '7 days - 1 month','4' => 'More than a month']; @endphp
{{ $discharge_mortality->illness_duration_at_admission_below_6 ? $arr[$discharge_mortality->illness_duration_at_admission_below_6] : "Not Recorded" }}
|
@endif
@if ($discharge_mortality && $discharge_mortality->child_with_proven_infection == 1 && between($age_diff_months, 7, 60) && is_smart_discharge_enabled())
Post Discharge Mortality Risk |
|
{{ Form::label('last_hospitalization', 'Time since last hospitalization') }}
|
@php $arr = ['1' => 'Less than 7 days ago','2' => '7 to 30 days ago','3' => '30 days to 1 year ago','4' => 'More than 1 year ago','5' => 'Never']; @endphp
{{ $discharge_mortality->last_hospitalization ? $arr[$discharge_mortality->last_hospitalization] : "Not Recorded" }}
|
|
{{ Form::label('safe_water', 'Do you boil, filter (good sand/ceramic) or disinfect (using bleach/waterguard) all drinking water?') }}
|
@if($discharge_mortality->filter_water == 1)
Yes
@else
No
@endif
|
| {{ Form::label('child_mosquito_net', 'Does your child sleep under a mosquito net?') }} |
@php $arr = ['1' => 'Never','2' => 'Sometimes','3' => 'Always']; @endphp
{{ $discharge_mortality->child_mosquito_net ? $arr[$discharge_mortality->child_mosquito_net] : "Not Recorded" }}
|
| {{ Form::label('hospital_travel_duration', 'How long did it take you to travel to the hospital?') }} |
@php $arr = ['1' => '< 30 mins','2' => '30 mins – 1 hour','3' => '1 - 4 hours','4' => '> 4 hours']; @endphp
{{ $discharge_mortality->hospital_travel_duration ? $arr[$discharge_mortality->hospital_travel_duration] : "Not Recorded" }}
|
| {{ Form::label('mother_education_level', 'What is the education level of the child’s mother?') }} |
@php $arr = ['1' => 'No school','2' => '<= P3','3' => 'P4-P7','4' => 'S1-S6','5' => 'Post secondary (including post S4 technical school)','6' => 'Do not know']; @endphp
{{ $discharge_mortality->mother_education_level ? $arr[$discharge_mortality->mother_education_level] : "Not Recorded" }}
|
| Eye movement |
{{ ['1' => 'Watches or follows','0' => 'Fails to watch or follow'][$discharge_mortality->bcs_eye_movement] ?? '' }} |
| Best motor response |
{{ ['0' => 'No response or inappropriate response','1' => 'Withdraws limb from pain stimulus','2' => 'Localizes painful stimulus'][$discharge_mortality->bcs_best_mortal] ?? '' }} |
| Best verbal response |
{{ ['0' => 'No vocal response to pain','1' => 'Moan or abnormal cry with pain','2' => 'Cries appropriately with pain (or speaks if verbal)'][$discharge_mortality->bcs_best_verbal] ?? '' }} |
| Mother's age |
{{ $discharge_mortality->maternal_age }} |
@endif
@if ($triage->any_tb_sysmptoms == 1)
TB SCREENING |
| A cough for more than two weeks ? |
{{ $triage->cough_for_2_weeks == 1 ? "Yes" : "No" }} |
| Persistent fevers for 2 weeks or more ? |
{{ $triage->fever_for_2_weeks == 1 ? "Yes" : "No" }} |
| Noticable weight loss of more than 3 Kg? |
{{ $triage->tb_weight_loss == 1 ? "Yes" : "No" }} |
| Poor weight gain in the last one month ? |
{{ $triage->tb_poor_weight_gain == 1 ? "Yes" : "No" }} |
| Excessive night sweats for three weeks or more ? |
{{ $triage->tb_excessive_night_sweats == 1 ? "Yes" : "No" }} |
| Contact with a person with pulmonary TB or chronic cough ? |
{{ $triage->tb_contact_with_tb_person == 1 ? "Yes" : "No" }} |
@endif
@if(is_smart_triage_enabled() && $nutrition)