Writeoff/Routes/web.php
Daeng Deni Mardaeni 27fc3e56dc add module rekening
2023-11-15 15:05:46 +07:00

24 lines
1.1 KiB
PHP

<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::name('parameter.')->prefix('parameter')->group(function() {
Route::get('branches', 'BranchController@index')->name('branches.index');
Route::get('currencies', 'CurrencyController@index')->name('currencies.index');
Route::get('products', 'ProductController@index')->name('products.index');
Route::get('guarantee-types', 'GuaranteeTypeController@index')->name('guarantee_types.index');
Route::get('facility-types', 'FacilityTypeController@index')->name('facility_types.index');
Route::get('loan-types', 'LoanTypeController@index')->name('loan_types.index');
Route::get('debitur', 'DebiturController@index')->name('debitur.index');
Route::get('rekening', 'RekeningController@index')->name('rekening.index');
});