@extends('admin.layouts.app') @section('title', 'Inventory') @section('page-title', 'Inventory Management') @section('content')
| Product | Variant | SKU | Current Stock | Min Level | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $variant->product->name }} | {{ $variant->name }} | {{ $variant->sku ?? '-' }} | {{ $variant->stock_quantity }} | {{ $variant->min_stock_level }} | {{ $variant->is_active ? 'Active' : 'Inactive' }} @if($variant->isLowStock()) Low Stock @endif | History |
| No inventory items found | ||||||