Document add payment modal fixed..

This commit is contained in:
Cüneyt Şentürk
2021-01-13 23:04:41 +03:00
parent 48e3ffd2bf
commit a35db4ac1e
5 changed files with 36 additions and 176 deletions

View File

@ -232,7 +232,6 @@ Route::group(['as' => 'modals.', 'prefix' => 'modals'], function () {
Route::patch('invoice-templates', 'Modals\InvoiceTemplates@update')->name('invoice-templates.update');
Route::get('documents/item-columns/edit', 'Modals\DocumentItemColumns@edit')->name('documents.item-columns.edit');
Route::patch('documents/item-columns', 'Modals\DocumentItemColumns@update')->name('documents.item-columns.update');
Route::resource('invoices/{invoice}/transactions', 'Modals\InvoiceTransactions', ['names' => 'invoices.invoice.transactions', 'middleware' => ['date.format', 'money']]);
Route::resource('bills/{bill}/transactions', 'Modals\BillTransactions', ['names' => 'bills.bill.transactions', 'middleware' => ['date.format', 'money']]);
Route::resource('documents/{document}/transactions', 'Modals\DocumentTransactions', ['names' => 'documents.document.transactions', 'middleware' => ['date.format', 'money']]);
Route::resource('taxes', 'Modals\Taxes');
});