{{ $item->name }}
Item Snapshot
Category
{{ $item->category ?: 'N/A' }}
Current Stock
{{ number_format($item->quantity) }} {{ $item->unit ?? 'units' }}
Min Stock
{{ number_format($item->min_stock) }}
Unit Price
UGX {{ number_format((float)$item->unit_price, 0) }}
Total Value
UGX {{ number_format($item->quantity * $item->unit_price, 0) }}
Status
@if($item->quantity > $item->min_stock) In Stock @elseif($item->quantity == 0) Out of Stock @else Low Stock @endif
Edit Item
@csrf @method('PUT')