Files
opensem/resources/views/Admin/Shop/InvoicePayments/form.blade.php
2023-12-09 21:02:28 +01:00

28 lines
804 B
PHP

<div class="row mb-3">
<div class="col-6">
@include('components.form.datepicker', [
'label' => 'Date',
'name' => 'date',
'value' => $invoice_payment['date'] ?? null,
])
</div>
<div class="col-6">
@include('components.form.select', [
'label' => 'Règlement',
'name' => 'payment_type',
'list' => $payment_types ?? [],
'value' => $invoice_payment['payment_type'] ?? null,
'class' => 'select2',
])
</div>
</div>
<div class="row mb-3">
<div class="col-6">
@include('components.form.inputs.money', [
'label' => 'Montant',
'name' => 'amount',
'value' => $invoice_payment['amount'] ?? null,
])
</div>
</div>