@extends('layouts.app') @section('title', 'Inventory Status Report') @section('content')
| Category | Item Name | Variation / Size | Current Stock | Status |
|---|---|---|---|---|
| {{ $var->item->category->name }} | {{ $var->item->name }} | {{ $var->value }} | {{ $var->stock_quantity }} | @if($var->stock_quantity <= $var->item->min_stock_threshold) Low Stock @else In Stock @endif |