@extends('layouts.app') @section('title','Pending Lab Requests') @section('content')

Pending Lab Requests {{ $orders->count() }}

@forelse($orders as $o)@empty@endforelse
PatientTestUrgencyStatusOrdered
{{ $o->patient->full_name ?? '' }}{{ $o->test_name }}{{ ucfirst($o->urgency) }}{{ str_replace('_',' ',$o->status) }}{{ $o->created_at->format('d M H:i') }}
All caught up!
@endsection