@extends('layouts.app') @section('title', 'Global Inventory') @section('content')
| Product | Location | On Hand | Reserved | Available | Status |
|---|---|---|---|---|---|
|
{{ $inventory->product->name }}
{{ $inventory->product->sku }}
|
{{ $inventory->warehouse->name }} | {{ number_format($inventory->quantity, 2) }} | @if($inventory->reserved_quantity > 0) {{ number_format($inventory->reserved_quantity, 2) }} @else - @endif | {{ number_format($inventory->quantity - $inventory->reserved_quantity, 2) }} {{ $inventory->product->unit_of_measure }} | @php $status = ($inventory->quantity - $inventory->reserved_quantity) > 10 ? 'success' : 'danger'; @endphp {{ $status == 'success' ? 'Healthy' : 'Low Stock' }} |
| No inventory records found matching your filters. | |||||