Mes commandes /

{{ $order->number }}

@include('account.partials.order-status', ['status' => $order->status])
{{-- Articles --}}

Articles

@foreach($order->items as $item)
{{ $item->product_name }} {{ number_format($item->total, 2, ',', ' ') }} €

Qté : {{ $item->quantity }} × {{ number_format($item->unit_price, 2, ',', ' ') }} €

@if($item->addons->isNotEmpty())
    @foreach($item->addons as $addon)
  • {{ $addon->addon_label }} : {{ $addon->addon_value }}
  • @endforeach
@endif
@endforeach
Sous-total {{ number_format($order->subtotal, 2, ',', ' ') }} €
@if($order->discount_total > 0)
Remise −{{ number_format($order->discount_total, 2, ',', ' ') }} €
@endif
Total {{ number_format($order->total, 2, ',', ' ') }} €
{{-- Adresses --}}

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 }}
{{ $order->billing_country }}

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 }}
{{ $order->shipping_country }}
@if($order->tracking_number)
Suivi : {{ $order->tracking_carrier }} — {{ $order->tracking_number }}
@endif