write test for another items and change some part of the code
This commit is contained in:
@@ -54,8 +54,9 @@ Route::prefix('server')->group(function () {
|
||||
Route::prefix('categories')
|
||||
->middleware('auth')
|
||||
->controller(CategoryController::class)
|
||||
->name('categories.')
|
||||
->group(function () {
|
||||
Route::get('/list', 'list');
|
||||
Route::get('/list', 'list')->name('list');
|
||||
});
|
||||
|
||||
Route::middleware('auth')
|
||||
@@ -73,6 +74,7 @@ Route::prefix('server')->group(function () {
|
||||
|
||||
Route::prefix('provinces')
|
||||
->controller(ProvinceController::class)
|
||||
->name('provinces.')
|
||||
->group(function () {
|
||||
Route::get('/list', 'list')->name('list');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user