Stock List Report

Generated on: {{ date('Y-m-d H:i:s') }}

@foreach($data as $product) @endforeach
ID Product Name Brand Category Quantity Threshold Status
{{ $product->id }} {{ $product->name }} {{ $product->brand->name }} {{ $product->subCategory->sub_category_name }} {{ $product->quantity }} {{ $product->threshold }} @if($product->quantity <= 0) Out of Stock @elseif($product->quantity <= $product->threshold) Low Stock @else Normal Stock @endif