minor fixes

This commit is contained in:
ludo
2023-12-09 21:02:28 +01:00
parent b5da5fc881
commit 2a429e4163
49 changed files with 448 additions and 266 deletions

View File

@@ -1,6 +1,13 @@
<div class="row">
<div class="row mb-3">
<div class="col-6">
@include('components.form.select', [
@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 ?? [],
@@ -8,8 +15,10 @@
'class' => 'select2',
])
</div>
</div>
<div class="row mb-3">
<div class="col-6">
@include('components.form.input', [
@include('components.form.inputs.money', [
'label' => 'Montant',
'name' => 'amount',
'value' => $invoice_payment['amount'] ?? null,