| Patient Name: {{ $patient_detail->first_name }} {{ $patient_detail->middle_name }}
{{ $patient_detail->last_name }} |
| Age |
{{ $patient_detail->age }} |
Patient Id |
{{ $patient_detail->patient_uniqe_id }} |
| Gender |
{{ $patient_detail->gender }} |
Sample Id |
{{ $patient_detail->sample_id }} |
Sample Id:  |
| Collected At |
{{ $patient_detail->health_post_name }} |
Collected On |
{{ $patient_detail->date }} |
| Received Lab |
{{ $patient_detail?->labName?->lab_name }} |
Received On |
{{ $patient_detail->received_at }} |
| MO(Medical Officer) Name |
{{ $patient_detail->refering_doctor_name }} |
@foreach ($organizedTests as $mainCategory => $subTests)
{{ $mainCategory }}
| TEST NAME |
Method |
Type |
RESULT |
UNITS |
BIOLOGICAL REFERANCE INTERVAL |
@foreach ($subTests['tests'] as $test)
| {{ $test->sub_category_name }} |
{{ $test->method_name }} |
{{ $test->type }} |
{{ $test->result }} |
{{ $test->units }} |
@if ($test->type == 'Quantitative')
{{ $test->from_range }} - {{ $test->to_range }} |
@else
{{ $test->bioreferal }} |
@endif
@endforeach
{!! $subTests['interpretation'] !!}
@endforeach