Warehouse overview
{{ $locationCount }}
Locations
{{ $totalStock }}
Units in stock
Low stock
@if(count($lowStockItems) === 0)
Nothing is at or below its reorder level.
@endif
@if(count($lowStockItems) > 0)
@foreach($lowStockItems as $item)
-
{{ $item->name }}
{{ $item->totalQuantity }} left (reorder at {{ $item->reorder_level }})
@endforeach
@endif