Stock Inventory

@foreach($stocks as $stock) @endforeach
Product Warehouse Quantity Reserved Low Threshold
{{ $stock->product->name ?? 'Deleted Product' }} {{ $stock->warehouse->name ?? 'Main Warehouse' }} {{ number_format($stock->quantity, 2) }} {{ number_format($stock->reserved_quantity, 2) }} {{ $stock->low_stock_threshold ? number_format($stock->low_stock_threshold, 2) : 'N/A' }}
{{ $stocks->links() }}