@if($paymentConfirmed)

Commande confirmée !

Merci pour votre commande {{ $order->number }}. Vous recevrez une confirmation par e-mail à {{ $order->billing_email }}.

@else

Paiement en cours de vérification

Votre commande {{ $order->number }} est en cours de traitement. Vous recevrez une confirmation par e-mail dès que le paiement sera validé.

@endif

Détail de la commande

    @foreach($order->items as $item)
  • {{ $item->product_name }} × {{ $item->quantity }} {{ number_format($item->total, 2, ',', ' ') }} €
  • @endforeach
@if($order->discount_total > 0)
Remise −{{ number_format($order->discount_total, 2, ',', ' ') }} €
@endif @if($order->shipping_total > 0)
{{ $order->shipping_method }} {{ number_format($order->shipping_total, 2, ',', ' ') }} €
@elseif($order->shipping_method)
{{ $order->shipping_method }} Gratuit
@endif
Total {{ number_format($order->total, 2, ',', ' ') }} €
{{-- Conversion tracking --}} @if($paymentConfirmed) @if(config('tracking.google_analytics_id')) @endif @if(config('tracking.facebook_pixel_id')) @endif @endif