@extends('layout') @section('content')

Products

Add Product
@if($products->isEmpty())

No products yet. Add your first product.

@else
@foreach($products as $p) @endforeach
Name Category Price Stock
{{ $p->name }} {{ optional($p->category)->name ?? '—' }} {{ number_format($p->price, 2) }} {{ $p->stock ?? '—' }} View Edit
@csrf @method('DELETE')
{{ $products->links() }}
@endif @endsection