@if($product->category)
{{ $product->category->name }}
@endif
@if($product->brand)
Marque : {{ $product->brand }}
@endif
@if($product->old_price)
{{ number_format($product->old_price, 2) }} FCFA
-{{ $product->discount_percent }}%
@endif
@if($product->short_description)
{{ $product->short_description }}
@endif
{{-- Stock --}}
@if($product->stock > 0)
En stock ({{ $product->stock }} disponibles)
@else
Rupture de stock
@endif
@if($product->stock > 0)
@endif
Commander maintenant
{{-- SKU --}}
@if($product->sku)
Référence : {{ $product->sku }}
@endif