|
@lang('emails/order.title')
@lang('emails/order.subtitle')
@if($payment == 'card')
Paiement par carte bancaire
@elseif($payment == 'species')
@else
@endif
Produits :
Code article |
Nom de l'article |
Condi' |
Qty |
Qty total |
Prix unité |
Prix total |
Commentaire |
@foreach ($orderProducts as $product)
{{ $product->product_code }} |
{{ $product->product_name }} |
{{ $product->conditioning }} |
{{ $product->quantity }} |
{{ Str::limit($product->product_code, 2) == 30 ? $product->quantity : $product->conditioning*$product->quantity }} |
{{ number_format($product->price, 3, '.', ' ') }} € |
{{ Str::limit($product->product_code, 2) == 30 ? number_format($product->price * $product->quantity, 3, '.', ' ') : number_format($product->price * $product->conditioning * $product->quantity, 3, '.', ' ') }} € |
{{ $product->comment }} |
@endforeach
Total |
{{ number_format($order['total'], 3, '.', ' ') }} € |
@if($order['comment'])
Commentaire du client :
{{ $order['comment'] }}
@endif
|
|
|
|