Résumé
Commande N° {{ $order->number }} ({{ $order->created_at->translatedFormat('d F Y') }})
| Produit |
Size |
Qté |
Prix |
Sous-total |
@foreach($order->items as $item)
@if(!empty($item->product?->featured_image))
@else
@endif
{{ $item->product->name ?? 'Produit supprimé' }}
|
{{ $item->size }} |
{{ $item->quantity }} |
{{ number_format($item->price, 2, ',', ' ') }} € |
{{ number_format($item->subtotal, 2, ',', ' ') }}€ |
@endforeach
| Sous-total : |
{{ number_format($order->sub_total, 2, ',', ' ') }}€ |
| Expédition : |
{{ $order->shipping > 0 ? number_format($order->shipping, 2, ',', ' ') . ' €' : 'Gratuite' }}
|
| Réduction : |
{{ number_format($order->discount, 3, ',', ' ') }} DT
|
| Total : |
{{ number_format($order->total, 3, ',', ' ') }} €
|
| Moyen de paiement : |
Paiement à la livraison |
|