|
Merci pour votre commande
Bonjour {{ $order->customer->name ?? 'Cher client' }},
Pour information – nous avons reçu votre commande, elle est maintenant en cours de traitement.
Voici un récapitulatif de ce que vous avez commandé :
|
Résumé
Commande # {{ $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, ',', ' ') }} DT |
{{ number_format($item->subtotal, 2, ',', ' ') }} DT |
@endforeach
| Sous-total : |
{{ number_format($order->sub_total, 2, ',', ' ') }} DT |
| Expédition : |
{{ $order->shipping > 0 ? number_format($order->shipping, 2, ',', ' ') . ' DT' : 'Gratuite' }}
|
| Réduction : |
{{ number_format($order->discount, 3, ',', ' ') }} DT
|
| Total : |
{{ number_format($order->total, 3, ',', ' ') }} DT
|
| Moyen de paiement : |
Paiement à la livraison |
|
Adresse de Facturation
{{ $order->customer->address ?? '' }}
{{ $order->customer->phone ?? '' }}
{{ $order->customer->email ?? '' }}
|
Adresse de livraison
{{ $order->shippingAddress->address ?? '' }}
{{ $order->shippingAddress->city ?? '' }} {{ $order->shippingAddress->postal_code ?? '' }}
{{ $order->shippingAddress->phone ?? '' }}
{{ $order->shippingAddress->email ?? '' }}
|
|
|
Merci pour votre achat.
|
|