write test for another items and change some part of the code

This commit is contained in:
2025-05-14 15:38:33 +03:30
parent db8cda55df
commit 16fe0be555
20 changed files with 1258 additions and 45 deletions

View File

@@ -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');
});