@extends('admin.layouts.app')
@section('content')
| 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 | |
| Aucun produit. | ||||