Enable demoting and promoting address role
This commit is contained in:
@@ -77,9 +77,13 @@ Route::middleware(['auth','verified','activeuser'])->group(function () {
|
||||
->where('o','[0-9]+');
|
||||
Route::get('ftn/system/deladdress/{o}',[SystemController::class,'del_address'])
|
||||
->where('o','[0-9]+');
|
||||
Route::get('ftn/system/demaddress/{o}',[SystemController::class,'dem_address'])
|
||||
->where('o','[0-9]+');
|
||||
Route::get('ftn/system/delsession/{o}/{zo}',[SystemController::class,'del_session'])
|
||||
->where('o','[0-9]+')
|
||||
->where('zo','[0-9]+');
|
||||
Route::get('ftn/system/proaddress/{o}',[SystemController::class,'pro_address'])
|
||||
->where('o','[0-9]+');
|
||||
Route::match(['get','post'],'ftn/system/echoarea/{o}',[SystemController::class,'echoareas'])
|
||||
->where('o','[0-9]+');
|
||||
Route::match(['get','post'],'ftn/system/filearea/{o}',[SystemController::class,'fileareas'])
|
||||
|
Reference in New Issue
Block a user