@extends('admin.layouts.app')
@section('content')
| Produit | Qte | P.U. | Total |
|---|---|---|---|
|
{{ $item->product_name }}
@if ($item->sku)
{{ $item->sku }}
@endif
|
{{ $item->quantity }} | {{ number_format($item->unit_price, 2, ',', ' ') }} € | {{ number_format($item->total, 2, ',', ' ') }} € |
| Sous-total | {{ number_format($order->subtotal, 2, ',', ' ') }} € | ||
| Remise | -{{ number_format($order->discount_total, 2, ',', ' ') }} € | ||
| Livraison | {{ number_format($order->shipping_total, 2, ',', ' ') }} € | ||
| Total | {{ number_format($order->total, 2, ',', ' ') }} € | ||
{{ $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 }}
@if ($order->billing_phone)Tel: {{ $order->billing_phone }}
@endif{{ $order->billing_email }}
{{ $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 }}
Methode : {{ $order->payment_method ?? '—' }}
@if ($order->paid_at)Paye le : {{ $order->paid_at->format('d/m/Y H:i') }}
@endif @if ($order->stripe_payment_intent_id)Stripe : {{ $order->stripe_payment_intent_id }}
@endifTransporteur : {{ $order->tracking_carrier }}
@endifN° suivi : {{ $order->tracking_number }}
{{ $order->customer_note }}
{{ $order->created_at->format('d/m/Y a H:i') }}