Files
exchange-2.0/routes/accounting.php
T

11 lines
430 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::group(['prefix' => 'accounting', 'as' => 'accounting.', 'namespace' => 'Accounting'], function () {
Route::group(['prefix' => 'statements/{id}', 'as' => 'statement.'], function () {
Route::get('/details', 'BankStatementController@fetch')->name('details');
Route::put('/details/update', 'BankStatementController@update')->name('details.update');
});
});