@extends('admin::layouts.master') @section('title', 'Products') @section('content')

Products

Add Product
@forelse($products as $product) @empty @endforelse
ID Name Category Price Stock Active Actions
{{ $product->id }} {{ $product->name }} {{ $product->category?->name ?? '-' }} €{{ number_format($product->price, 2) }} {{ $product->stock_quantity }} {{ $product->is_active ? 'Yes' : 'No' }} Edit
@csrf @method('DELETE')
No products found.
{{ $products->links() }}
@endsection