{{ Form::open(['route' => 'Admin.Shop.Invoices.update', 'id' => 'invoice-form', 'autocomplete' => 'off']) }}
Facture N° {{ $invoice['ref'] }} du {{ Carbon\Carbon::parse($invoice['created_at'])->isoFormat('LLLL') }}
@if ($invoice['order']['customer']['company']) Société : {{ $invoice['order']['customer']['company'] }}
@endif {{ $invoice['order']['customer']['first_name'] }} {{ $invoice['order']['customer']['last_name'] }}
@if ($invoice['order']['delivery_address']) @include('components.address-view', [ 'address' => $invoice['order']['delivery_address'], ]) @endif
@include('components.form.select', [ 'label' => 'Statut', 'name' => 'status', 'list' => $statuses ?? [], 'value' => $invoice['status'], 'class' => 'select2', ])
@include('Admin.Shop.Invoices.partials.payments', [ 'payments' => $invoice['payments'] ?? false, ])
@include('Admin.Shop.Orders.partials.detail', [ 'detail_type' => 'facture', 'order' => $invoice['order'] ?? null, ])
@include('load.layout.modal') @include('load.form.save')