fixed wrong routes.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<div class="modal-body">
|
||||
{!! Form::open([
|
||||
'route' => 'modals.bills.bill.transactions.store', $bill->id,
|
||||
'route' => ['modals.bills.bill.transactions.store', $bill->id],
|
||||
'id' => 'transaction',
|
||||
'@submit.prevent' => 'onSubmit',
|
||||
'@keydown' => 'transaction_form.errors.clear($event.target.name)',
|
||||
|
@ -1,6 +1,6 @@
|
||||
<div class="modal-body pb-0">
|
||||
{!! Form::open([
|
||||
'route' => 'modals.invoices.invoice.transactions.store', $invoice->id,
|
||||
'route' => ['modals.invoices.invoice.transactions.store', $invoice->id],
|
||||
'id' => 'transaction',
|
||||
'@submit.prevent' => 'onSubmit',
|
||||
'@keydown' => 'transaction_form.errors.clear($event.target.name)',
|
||||
|
Reference in New Issue
Block a user