@extends('admin.layouts.app') @section('title', 'Inventory') @section('page-title', 'Inventory Management') @section('content')

Inventory

@if(request('low_stock')) @endif @if(!request('low_stock')) Show Low Stock Only @endif
@forelse($variants as $variant) @empty @endforelse
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
{{ $variants->links() }}
@push('scripts') @endpush @endsection