Inventory — Current Stock
MG Road Outlet
{{-- Stock alerts --}}
⚠ Low Stock Alerts
@foreach(['Chicken Breast' => '1.2 kg', 'Cooking Oil' => '0.8 L', 'Paneer' => '500 g'] as $item => $qty)
{{ $item }}
{{ $qty }} remaining
@endforeach
{{-- Stock table --}}
Item
Stock
Unit
Value
@foreach([
['Tomatoes', '12.4', 'kg', '₹620'],
['Basmati Rice', '45.0', 'kg', '₹2,700'],
['Milk', '20.0', 'L', '₹900'],
['Butter', '5.0', 'kg', '₹1,250'],
] as [$item, $stock, $unit, $val])
{{ $item }}
{{ $stock }}
{{ $unit }}
{{ $val }}
@endforeach