@extends('layouts.app') @section('title', 'Inventory Summary') @section('content')

Inventory Summary

Current stock levels across all warehouses

@forelse($stocks as $stock) @php $isLow = $stock->quantity < $stock->item->minimum_stock_level; @endphp @empty @endforelse
Item Code Item Name Warehouse Quantity Min Stock
{{ $stock->item->item_code ?? '' }} {{ $stock->item->item_name ?? '' }} @if($isLow) LOW @endif {{ $stock->warehouse->name ?? '' }} {{ number_format($stock->quantity, 2) }} {{ number_format($stock->item->minimum_stock_level ?? 0, 2) }}
No stock data available.
@endsection