@extends('layouts.app') @section('title', 'Commande confirmée') @section('content')
{{-- Success Header --}}

Commande Confirmée !

Merci pour votre commande. Notre équipe vous contactera bientôt.

{{-- Order Details --}}

Numéro de commande

{{ $order->order_number }}

{{ $order->status_label }}

Client

{{ $order->customer_name }}

Email

{{ $order->email }}

Téléphone

{{ $order->phone }}

Ville

{{ $order->city }}{{ $order->wilaya ? ', ' . $order->wilaya : '' }}

Adresse

{{ $order->address }}

@if($order->notes)

Notes

{{ $order->notes }}

@endif

Articles commandés

@foreach($order->items as $item)
{{ $item->product_name }} × {{ $item->quantity }} {{ number_format($item->subtotal, 2) }} FCFA
@endforeach
Total {{ number_format($order->total_amount, 2) }} FCFA
{{-- Info Box --}}

Prochaines étapes

  • Notre équipe examinera votre commande
  • Vous serez contacté(e) par téléphone pour la confirmation
  • Livraison estimée : 24 à 72 heures
  • Paiement à la livraison
{{-- Actions --}}
Retour à l'accueil Continuer les achats
@endsection