@extends('layouts.app') @section('title','Laboratory Test Summary') @section('content')

Laboratory Test Summary

@include('reports._date-filter')
@foreach($data as $d)@endforeach
Test NameTotal OrderedCompletedPending
{{ $d->test_name }}{{ $d->total }}{{ $d->completed }}{{ $d->pending }}
Total{{ $data->sum('total') }}{{ $data->sum('completed') }}{{ $data->sum('pending') }}
@endsection