@if(isset($data['low_stock_alert']))
@if(!empty($data['low_stock_alert']['raw_materials']))
Raw Materials
| Material |
Current Stock |
Reorder Point |
@foreach($data['low_stock_alert']['raw_materials'] as $item)
| {{ $item['name'] }} |
{{ $item['current_stock'] }} {{ $item['unit'] }} |
{{ $item['reorder_point'] }} |
@endforeach
@endif
@if(!empty($data['low_stock_alert']['finished_products']))
Finished Products
| Product |
Current Stock |
Reorder Point |
@foreach($data['low_stock_alert']['finished_products'] as $item)
| {{ $item['name'] }} |
{{ $item['current_stock'] }} {{ $item['unit'] }} |
{{ $item['reorder_point'] }} |
@endforeach
@endif
@endif