@extends('layouts.app') @section('title', 'Lab Consumables') @section('content') {{-- Page header removed per UI cleanup; sidebar already names the page. --}}
@if(session('success'))| Code | Consumable | Category | In Hand | Reorder At | Unit Cost | Linked Tests | Status | |
|---|---|---|---|---|---|---|---|---|
| {{ $item->code }} | {{ $item->name }} | {{ $item->category }} | {{ $item->quantity_in_hand }} | {{ $item->reorder_level }} | {{ $item->unit_cost > 0 ? number_format($item->unit_cost) : '|' }} | @php $linked = $linkedTestNames[$item->id] ?? []; @endphp @if(count($linked)) {{ count($linked) }} test{{ count($linked) > 1 ? 's' : '' }} @else None @endif | @if($item->quantity_in_hand <= 0) Out of Stock @elseif($item->quantity_in_hand <= $item->reorder_level) Low Stock @else OK @endif | @if(Auth::user()->hasRole('Super Admin') || Auth::user()->hasRole('Hospital Admin')) @endif |
| No consumables found. | ||||||||
When a linked test result is verified, the system auto-deducts the specified quantity from stock.
{{-- Current links table --}}| Lab Test | Consumable | Qty/Test | |
|---|---|---|---|
| {{ $test->name }} | {{ $test->consumableItem->name ?? '|' }} | {{ $test->consumable_qty }} | |
| No links configured yet. | |||