Writeoff/Routes/web.php

24 lines
1.1 KiB
PHP
Raw Normal View History

2023-10-02 11:27:22 +00:00
<?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');
2023-10-10 04:18:12 +00:00
Route::get('currencies', 'CurrencyController@index')->name('currencies.index');
2023-11-15 08:00:51 +00:00
Route::get('products', 'ProductController@index')->name('products.index');
2023-10-10 08:44:27 +00:00
Route::get('guarantee-types', 'GuaranteeTypeController@index')->name('guarantee_types.index');
2023-11-06 04:24:50 +00:00
Route::get('facility-types', 'FacilityTypeController@index')->name('facility_types.index');
2023-11-06 04:57:18 +00:00
Route::get('loan-types', 'LoanTypeController@index')->name('loan_types.index');
2023-11-13 12:13:24 +00:00
Route::get('debitur', 'DebiturController@index')->name('debitur.index');
2023-11-15 08:05:46 +00:00
Route::get('rekening', 'RekeningController@index')->name('rekening.index');
2023-10-02 11:27:22 +00:00
});