Enabled moving address, minor CSS fixes

This commit is contained in:
Deon George
2021-08-08 17:27:22 +10:00
parent 7cd7849241
commit 8d4ca2963d
6 changed files with 202 additions and 12 deletions

View File

@@ -50,6 +50,9 @@ Route::middleware(['verified','activeuser'])->group(function () {
Route::get('ftn/system/delsession/{o}/{zo}',[SystemController::class,'del_session'])
->where('o','[0-9]+')
->where('zo','[0-9]+');
Route::match(['get','post'],'ftn/system/movaddress/{so}/{o}',[SystemController::class,'mov_address'])
->where('so','[0-9]+')
->where('o','[0-9]+');
Route::get('ftn/system/susaddress/{o}',[SystemController::class,'sus_address'])
->where('o','[0-9]+');