Writeoff/Routes/web.php

19 lines
723 B
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-10-10 08:44:27 +00:00
Route::get('guarantee-types', 'GuaranteeTypeController@index')->name('guarantee_types.index');
2023-10-02 11:27:22 +00:00
});