@if ($invoice['customer']['company']) {{ $invoice['customer']['company'] }}
@endif {{ $invoice['customer']['last_name'] }} {{ $invoice['customer']['first_name'] }}

@if ($invoice['address']) {{ $invoice['address']['address'] }}
@isset($invoice['address']['address2']) {{ $invoice['address']['address2'] }}
@endisset {{ $invoice['address']['zipcode'] }} {{ $invoice['address']['city'] }}
@endif
@if ($invoice['order']['delivery_address']) {{ $invoice['order']['delivery_address']['address'] }}
@isset($invoice['order']['delivery_address']['address2']) {{ $invoice['order']['delivery_address']['address2'] }}
@endisset {{ $invoice['order']['delivery_address']['zipcode'] }} {{ $invoice['order']['delivery_address']['city'] }}
@endif
Facture N° {{ $invoice['ref'] }}
du {{ Carbon\Carbon::parse($invoice['created_at'])->isoFormat('LLLL') }}
Statut : {{ $invoice['status'] }}
Canal de vente : {{ $invoice['order']['sale_channel']['name'] }}
Règlement : {{ $invoice['payment_type'] }}
@include('Admin.Shop.Orders.partials.detail', [ 'detail_type' => 'facture', 'order' => $invoice['order'], ])