@extends('layouts.main') @push('scripts') @endpush @push('styles') @endpush @section('content')
Triage grade not determined
@endswitch
@endif
| Symptom | Duration |
|---|---|
| {{ isset($symptoms[$symptoms_array[$i]]) ? $symptoms[$symptoms_array[$i]] : "" }} | {{ isset($symptoms_duration_array[$i]) ? $symptoms_duration_array[$i] : "" }} |
No symptoms recorded
@endif
| Observation | Value |
|---|---|
| {{ $item_array[0] }} | {{ $item_array[1] }} |
| Observation | Value |
|---|---|
| {{ isset($item_array[0]) ? $item_array[0] : "" }} | {{ isset($item_array[1]) ? $item_array[1] : "" }} |
No observations recorded
@endif
| PRIMARY DIAGNOSIS | PROMPT | REFERENCES |
|---|---|---|
|
{{ Form::select('primary_diagnosis', $diagnoses, '', ['id'=>'primary_diagnosis','class' => 'form-control col-sm-12 compulsory', 'required']) }}
|
||
| # | OTHER DIAGNOSIS | PROMPT | REFERENCES |
|---|---|---|---|
| {{ Form::select('other_diagnosis[]', $diagnoses, '', ['id'=>'other_diagnosis_id_1','class' => 'form-control col-sm-12 sec_d']) }} |
| RDT | RBS | |
|---|---|---|
| {{ Form::checkbox('rdt', 1, false, ['id'=>'rdt_pos']) }} | {{ Form::checkbox('rdt', 0, false, ['id'=>'rdt_neg']) }} | {{ Form::text('rbs','',['class'=>'form-control']) }} |
| Investigation | Reference range | Value | Comment |
|---|---|---|---|
| @if($investigation->insurance_coverage == 1 && patient_insurance_status($patient_id) == 1) {{ $investigation->name }} @else {{ $investigation->name }} @endif | {{ $investigation->normal_ranges }} | {!! $per_investigation_array[$i] == 0 ? 'Pending' : $results_values[$i] !!} | {!! $per_investigation_array[$i] == 0 ? 'Pending' : $comments[$i] !!} |
| Authenticated by | {{ get_name($result->authenticated_by, 'id', 'first_name', 'users')}} {{ get_name($result->authenticated_by, 'id', 'last_name', 'users')}} | ||
| @if($investigation->insurance_coverage == 1 && patient_insurance_status($patient_id) == 1) {{ $investigation->name }} @else {{ $investigation->name }} @endif | {{ $investigation->normal_ranges }} | Pending | {{ $investigation->comments }} |
Investigations not ordered |
|||
| # | SUNDRY | QUANTITY | ||||
|---|---|---|---|---|---|---|
| {{ $count }} | {{ \Streamline\Models\Sundry::find($ordered_sundry->sundries_id)->name }} | {!! $ordered_sundry->quantity !!} | ||||
No sundry has been ordered. |
||||||
| # | DRUG NAME | DOSAGE | DURATION | QUANTITY | STATUS | INSTRUCTION | ||
|---|---|---|---|---|---|---|---|---|
| " .$row_num."."." | " . "" . get_name($drugs_array[$x], 'id', "name", 'drugs') . " | " . "" . $dosage_array[$x] . $drug_unit . $dose2 . " " . $frequency_name . " | " . "" . $duration_array[$x] . " | " . "" . $quantity_dispensed_array[$x] . " | "; if ($treatment->dispensed == 1): echo "Dispensed | "; else: echo "Pending | "; endif; if(isset($instructions_array[$x])){ echo "" . trim($instructions_array[$x]). " | "; } else { echo ""; } echo " |
No prescription made yet |
||||||||
| # | PROCEDURE | STATUS | PERFORMED | |||
|---|---|---|---|---|---|---|
| {{ $count }} | {{ \Streamline\Models\Procedure::find($ordered_procedure->procedure_id)->name }} | {!! $ordered_procedure->performed == 1 ? 'Performed' : 'Pending' !!} | ||||
No procedure has been ordered. |
||||||