Merci pour votre commande !

Atelier d'Aubin

Bonjour {{ $order->billing_first_name }},

Votre commande a bien été enregistrée et votre paiement confirmé. Voici le récapitulatif :

Commande : #{{ $order->number }}

Date : {{ $order->created_at->format('d/m/Y à H:i') }}

Livraison : {{ $order->shipping_method }}

@foreach($order->items as $item) @endforeach
Produit Qté Total
{{ $item->product_name }} @foreach($item->addons as $addon)
+ {{ $addon->group_name }}: {{ $addon->addon_name }} @if($addon->price > 0)({{ number_format($addon->price, 2, ',', ' ') }} €)@endif @endforeach
{{ $item->quantity }} {{ number_format($item->total, 2, ',', ' ') }} €

Sous-total {{ number_format($order->subtotal, 2, ',', ' ') }} €

@if($order->discount_total > 0)

Remise{{ $order->coupon_code ? ' ('.$order->coupon_code.')' : '' }} -{{ number_format($order->discount_total, 2, ',', ' ') }} €

@endif

Livraison {{ $order->shipping_total > 0 ? number_format($order->shipping_total, 2, ',', ' ') . ' €' : 'Gratuit' }}

Total {{ number_format($order->total, 2, ',', ' ') }} €

Adresse de facturation

{{ $order->billing_first_name }} {{ $order->billing_last_name }}
{{ $order->billing_address_1 }}
@if($order->billing_address_2){{ $order->billing_address_2 }}
@endif {{ $order->billing_postcode }} {{ $order->billing_city }}
@if($order->shipping_address_1 && $order->shipping_address_1 !== $order->billing_address_1)

Adresse de livraison

{{ $order->shipping_first_name }} {{ $order->shipping_last_name }}
{{ $order->shipping_address_1 }}
@if($order->shipping_address_2){{ $order->shipping_address_2 }}
@endif {{ $order->shipping_postcode }} {{ $order->shipping_city }}
@endif @if($order->relay_point_code)

Point relais

Code : {{ $order->relay_point_code }}
@endif
@if($order->customer_note)
Note : {{ $order->customer_note }}
@endif