|
@lang('emails/order-confirm.title')
@lang('emails/order-confirm.subtitle')
Produits :
Code article |
Nom de l'article |
Conditionnement |
Quantités |
Prix unité |
Prix total |
Commentaire |
@foreach ($orderProducts as $product)
{{ $product->product_code }} |
{{ $product->product_name }} |
{{ $product->conditioning }} |
{{ $product->quantity }} |
{{ number_format($product->price, 3, '.', ' ') }} € |
{{ Str::limit($product->code, 2) == 30 ? number_format($product->price * $product->conditioning * $product->quantity, 3, '.', ' ') : number_format($product->price * $product->quantity, 3, '.', ' ') }} € |
{{ $product->comment }} |
@endforeach
Total |
{{ number_format($order['total'], 3, '.', ' ') }} € |
@if($order['comment'])
Commentaire :
{{ $order['comment'] }}
@endif
|
|
|
|