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

Imaging Summary

@include('reports._date-filter')
@foreach($data as $d)@endforeach
Study TypeTotalCompletedPending
{{ $d->imaging_type }}{{ $d->total }}{{ $d->completed }}{{ $d->pending }}
Total{{ $data->sum('total') }}{{ $data->sum('completed') }}{{ $data->sum('pending') }}
@endsection