This commit is contained in:
Cüneyt Şentürk
2018-08-18 17:16:19 +03:00
parent b2e25990a1
commit 398c8d38a6
5 changed files with 60 additions and 4 deletions

View File

@ -22,7 +22,7 @@ Route::group(['middleware' => 'language'], function () {
Route::get('dashboard/cashflow', 'Common\Dashboard@cashFlow')->name('dashboard.cashflow');
Route::get('import/{group}/{type}', 'Common\Import@create')->name('import.create');
Route::get('items/autocomplete', 'Common\Items@autocomplete')->name('items.autocomplete');
Route::post('items/totalItem', 'Common\Items@totalItem')->name('items.total');
Route::post('items/totalItem', 'Common\Items@totalItem')->middleware(['money'])->name('items.total');
Route::get('items/{item}/duplicate', 'Common\Items@duplicate')->name('items.duplicate');
Route::post('items/import', 'Common\Items@import')->name('items.import');
Route::get('items/export', 'Common\Items@export')->name('items.export');