@extends('admin.layouts.app') @section('content')
{{-- Header --}} {{-- Table --}}
@forelse ($products as $product) @empty @endforelse
Nom Categorie Prix Statut Actions
{{ $product->name }}
@if ($product->sku)
SKU: {{ $product->sku }}
@endif
{{ $product->category?->name ?? '—' }} @if ($product->sale_price) {{ number_format($product->price, 2, ',', ' ') }} €
{{ number_format($product->sale_price, 2, ',', ' ') }} € @else {{ number_format($product->price, 2, ',', ' ') }} € @endif
@if ($product->is_active) Actif @else Inactif @endif
@csrf @method('DELETE')
Aucun produit.
{{-- Pagination --}} @if ($products->hasPages())
{{ $products->links() }}
@endif
@endsection