@extends('admin.layouts.app')
@section('content')
| Produit | Categorie | Prix | Stock | Actif | |
|---|---|---|---|---|---|
|
@if($product->featuredImage)
{{ $product->name }}
@if($product->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->manage_stock) {{ $product->stock_quantity }} @else - @endif | ||
| Aucun produit trouvé. | |||||