Facility Name {{$specimen->referral->facility->name}} Date Received {{$specimen->time_accepted}}
Patient Name {{ $specimen->patient->name }} Specimen Type {{ $specimen->specimenType->name }}
{{ trans('messages.patient-id')}} {{ $specimen->patient->patient_number}} Lab ID {{ $specimen->lab_id }}
{{ trans('messages.gender')}} & {{ trans('messages.age')}} {{ $specimen->patient->getGender(false) }} | {{ $specimen->patient->getAge()}}

Laboratory Findings
@forelse($specimen->tests as $test) @if(!$test->testType->isCulture() && $test->isCompleted())
{{ $test->testType->name }} @foreach($test->testResults as $result) @if($test->measures->count() > 1) {{ Measure::find($result->measure_id)->name }}: @endif {{ $result->result }} {{ Measure::getRange($test->specimen->patient, $result->measure_id) }} {{ Measure::find($result->measure_id)->unit }} @endforeach
@endif @empty
{{trans("messages.no-records-found")}}
@endforelse
@foreach($specimen->tests as $test) @if($test->testType->isCulture()) @if(count($test->isolated_organisms)>0)

Antimicrobial Susceptibility Testing(AST)
Organism(s) Antibiotic(s) Result(s)
@foreach($test->isolated_organisms as $isolated_organism) @foreach($isolated_organism->drug_susceptibilities as $drug_susceptibility) @if ($i > 1) @endif @endforeach
{{$isolated_organism->organism->name}}
{{$drug_susceptibility->drug->name}} {{$drug_susceptibility->drug_susceptibility_measure->symbol}}
@endforeach
Comment(s) {{$test->interpretation}}
Result Guide S-Sensitive | R-Resistant | I-Intermediate
@else
Antimicrobial Susceptibility Testing(AST)
@if($test->culture_observation)
{{ $test->culture_observation->observation }}
@endif @endif @endif @endforeach @if($test->isCompleted() || $test->isVerified()) @endif @if($test->isVerified()) @endif
Test/Analysis Performed by: {{ $test->testedBy->name }} Signature:
Reviewed by: {{$test->verifiedBy->name}} Signature:
Printed by: {{ Auth::user()->name }} Date: {{ $printTime }}