@extends('layouts.app') @section('title', 'Inventory') @section('content')
Stock In Stock Out Manual Adjustment
@forelse($products as $product) @php $isLowStock = $product->current_stock <= $product->alert_limit; @endphp @empty @endforelse
Product ID Name Current Stock Alert Limit Status Actions
{{ $product->id }} {{ $product->name }} {{ $product->current_stock }} {{ $product->alert_limit }} @if($isLowStock) Low Stock @else In Stock @endif

No products found

@endsection