@extends('layouts.admin') @section('title', 'Inventory') @section('content') Add Product
@foreach($products as $p)@endforeach
SKUNameCategoryOn HandReorderStatus
{{ $p->sku }}{{ $p->name }}{{ $p->category?->name ?? '—' }} quantity_on_hand <= $p->reorder_level) class="text-danger fw-bold" @endif>{{ $p->quantity_on_hand }} {{ $p->unit }} {{ $p->reorder_level }}
{{ $products->links() }}
@foreach($products as $p) @endforeach @endsection