@extends('layouts.app') @section('title', 'MOH 706 | Laboratory Summary') @section('styles')@endsection @section('content')

MOH 706 | Laboratory Summary

{{ $month->format('F Y') }} · Auto-generated from lab orders

@include('reports._moh-month') @if(count($warnings))

Validation Warnings

@foreach($warnings as $w)

⚠ {{ $w }}

@endforeach
@endif
@foreach($data as $d) @php $pct = $d->total > 0 ? round($d->done / $d->total * 100) : 0; @endphp @endforeach
Test NameTotal OrderedCompletedPendingCompletion %
{{ $d->test_name }} {{ $d->total }} {{ $d->done }} {{ $d->pending }}
{{ $pct }}%
TOTAL{{ $data->sum('total') }}{{ $data->sum('done') }}{{ $data->sum('pending') }}{{ $data->sum('total') > 0 ? round($data->sum('done') / $data->sum('total') * 100) : 0 }}%
@endsection