add payments by invoice

This commit is contained in:
ludo
2023-11-25 16:21:35 +01:00
parent 731c31a58c
commit 34f0b2796f
20 changed files with 579 additions and 215 deletions

View File

@@ -0,0 +1,26 @@
<div class="row">
<div class="col-6">
@include('components.form.select', [
'label' => 'Règlement',
'name' => 'payment_type',
'list' => $payment_types ?? [],
'value' => $invoice_payment['payment_type'],
'class' => 'select2',
])
</div>
<div class="col-6">
@include('components.form.input', [
'label' => 'Montant',
'name' => 'amount',
'value' => $invoice_payment['amount'],
])
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="float-right mt-3">
@include('components.form.buttons.button-save')
</div>
</div>
</div>