create api for show all state harim

This commit is contained in:
2025-10-19 10:18:21 +03:30
parent 85ebdbec0b
commit bcd051b3e0
2 changed files with 39 additions and 0 deletions

View File

@@ -523,6 +523,13 @@ Route::prefix('missions')
Route::prefix('harim')
->name('harim.')
->group(function () {
Route::prefix('detail')
->name('detail.')
->controller(DetailController::class)
->group(function () {
Route::get('/states', 'states')->name('states');
});
Route::prefix('province_office')
->name('province_office.')
->controller(ProvinceOfficeController::class)
@@ -531,6 +538,7 @@ Route::prefix('harim')
Route::post('/feedback/{harim}', 'feedback')->name('feedback');
Route::get('/{harim}', 'show')->name('show');
});
Route::prefix('harim_office')
->name('harim_office.')
->controller(HarimOfficeController::class)
@@ -543,6 +551,7 @@ Route::prefix('harim')
Route::post('/file_rejected/{harim}', 'fileRejected')->name('fileRejected');
Route::get('/{harim}', 'show')->name('show');
});
Route::prefix('technical_deputy')
->name('technical_deputy.')
->controller(TechnicalDeputyController::class)
@@ -554,6 +563,7 @@ Route::prefix('harim')
Route::post('/refer_road_access/{harim}', 'referRoadAccess')->name('referRoadAccess');
Route::get('/{harim}', 'show')->name('show');
});
Route::prefix('general_manager')
->name('general_manager.')
->controller(GeneralManagerController::class)