Client : {{ $order->billing_first_name }} {{ $order->billing_last_name }}
Email : {{ $order->billing_email }}
@if($order->billing_phone)Tél : {{ $order->billing_phone }}
@endifLivraison : {{ $order->shipping_method }}
Date : {{ $order->created_at->format('d/m/Y H:i') }}
| 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, ',', ' ') }} € |
Total : {{ number_format($order->total, 2, ',', ' ') }} €
@if($order->customer_note)
Note client : {{ $order->customer_note }}
@endif