@extends('dashboard.index') @section('content')

Inventory List

Add Inventory @if(session('success'))
{{ session('success') }}
@endif @foreach($inventories as $inv) @endforeach
ID Warehouse Product Quantity Reserved Min Stock Max Stock Last Restocked Actions
{{ $inv->id }} {{ $inv->warehouse->name ?? '-' }} {{ $inv->product->name ?? '-' }} {{ $inv->quantity }} {{ $inv->reserved }} {{ $inv->min_stock }} {{ $inv->max_stock }} {{ $inv->last_restocked_at }} Edit
@csrf @method('DELETE')
{{ $inventories->links() }}
@endsection