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

Current Inventory Status

@foreach($variations as $var) @endforeach
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
@endsection