@lang('emails/order-confirm.title')

@lang('emails/order-confirm.subtitle')

Récapitulatif

N° commande : {{ $order['number'] }}
Date : {{ $order['created_at'] }}
Total : {{ number_format($order['total'], 3, '.', ' ') }} €
Adresse de livraison

Nom : {{ $user['name'] }}
Rue 1 : {{ $user['street'] }}
Rue 2 : {{ $user['street_bis'] }}
Code postal : {{ $user['postal'] }}
Ville : {{ $user['city'] }}


Produits :

@foreach ($orderProducts as $product) @endforeach @if($order['comment'])

Commentaire :

{{ $order['comment'] }} @endif