@extends('layouts.admin.base') @section('page.title', 'Commande n°'.$order->id) @section('page.content')
Produits de la commande
{{ $item->product->title }}
{{ $item->price_formatted }}
Quantité: {{ $item->quantity }}
Résumé
Sous-total
{{ $order->price_untaxed_formatted }}
Livraison
{{ $order->shipping_price_formatted ?? '0.00 €' }}
TVA
{{ $order->tax_formatted ?? '0.00 €' }}
Total
{{ $order->price_formatted }}
Numéro de suivi
@include('components.forms.inputs.classic-light', [ 'disabled' => true, 'id' => 'tracking_number', 'value' => $order->tracking_number ])Paiements
Payé avec {{ $payment->type }}.
@if ($payment->type == 'stripe')Identifiant Stripe : {{ $payment->datas['stripe_id'] ?? "Non indiqué" }}
@endif{{ $payment->amount_formatted }}
Aucun paiement n'a été enregistré pour cette commande.
@endforelseContact
{{ $order->email }}
Téléphone
{{ $order->phone ?? "Non indiqué" }}
Adresses
Livraison
@isset($order->shipping_address){{ $order->shipping_address->identity }}
{{ $order->shipping_address->summary }}
@endisset @isset($order->delivery_center){{ $order->billing_address->identity }}
Retrait au centre {{ $order->delivery_center->title }}
{{ $order->delivery_center->address->summary }}
@endissetFacturation
{{ $order->billing_address->identity }}
{{ $order->billing_address->summary }}