Beauty Care & Fashion
Date | Numéro de Commande | Client | Produits | Paiement | Sous-Total | Livraison | Total | Statut |
---|---|---|---|---|---|---|---|---|
{{ \Carbon\Carbon::create($order->created_at)->isoFormat('ll') }}
|
{{ $order->order_number ?? '' }}
|
{{ $order->user_id ? $order->first_name . ' ' . $order->last_name : '' }}
|
@php
$products = json_decode($order->cart['products_json']);
@endphp
@foreach ($products as $key => $product)
{{ $product->quantity }}
{{ App\Models\Product::where('code', $key)->first()->unitMeasures->first()->unit }}(s)
de {{ $product->name }},
@endforeach |
{{ isset($order->payment_method_id) ? App\Models\PaymentMethod::find($order->payment_method_id)->method : null }}
|
{{ $order->sub_total }} FCFA
|
{{ $order->total_amount - $order->sub_total }} FCFA
|
{{ $order->total_amount }} FCFA
|
{{ $order->status }}
|
Liste générée le {{ \Carbon\Carbon::now()->isoFormat('lll') }}