@extends('layouts.admin-simple') @section('title', 'Indirect Goods - Low Stock') @section('breadcrumb') @endsection @section('page-title')

Low Stock Alerts

Indirect goods at or below reorder point

arrow_back Back to Inventory
@endsection @section('content') @if($items->isEmpty())
check_circle
All stock levels are healthy

No indirect goods are currently below their reorder point.

@else
@foreach($items as $index => $item) @endforeach
# IG Code Description Category Unit Current Stock Reorder Point Min Stock Level Status Actions
{{ $index + 1 }} {{ $item['ig_code'] }} {{ $item['ig_description'] }} {{ $item['category'] }} {{ $item['unit'] }} {{ number_format($item['current_stock'], 2) }} {{ number_format($item['reorder_point'], 2) }} {{ number_format($item['min_stock_level'], 2) }} @if($item['status'] == 'out_of_stock') Out of Stock @else Low Stock @endif history
@endif @endsection