Date de commande : {{ $order->created_at->format('d/m/Y') }}
Date de livraison estimée : {{ $order->created_at->add('30 days')->format('d/m/Y') }}
Statut : {{ __('order.status.'.$order->status) }}
{{ $item->title }}
{{ $item->price_formatted }}
Quantité: {{ $item->quantity }}
Adresse
{{ $order->billing_address->identity }}
{{ $order->billing_address->summary }}
Moyen de paiement
Carte bancaire
Adresse
{{ $order->shipping_address->identity ?? null }}
{{ $order->shipping_address->summary ?? $order->delivery_center->title ?? "Non indiqué" }}
Type de livraison
Gratuite (30 jours)
Sous-total
{{ $order->price_untaxed_formatted }}
Livraison
{{ $order->shipping_price_formatted ?? '0.00 €' }}
TVA
{{ $order->tax_formatted ?? '0.00 €' }}
Total
{{ $order->price_formatted }}