@extends('layouts.app') @section('title', 'Imaging / Radiology') @section('styles') @endsection @section('content') {{-- Page header removed per UI cleanup; search/filter form is now the top-most bar on the page (sidebar already names the page). --}}
@if(request()->hasAny(['search','date']))Clear@endif
{{-- Stats removed Issue #15: tab badges below convey same info. --}}
{{-- Ordered Studies (requested / scheduled / in_progress) --}}
@include('imaging._table', ['requests' => $orderedRows])
{{-- Pending Reports (imaging_done / reported) --}}
@include('imaging._table', ['requests' => $pendingRows])
{{-- Verified Reports --}}
@include('imaging._table', ['requests' => $verifiedRows])
@endsection @section('scripts') @include('partials._tab-state-helper', ['defaultTab' => 'ordered']) @endsection