More work on user linking to existing defined system

This commit is contained in:
Deon George
2022-12-04 13:30:38 +11:00
parent 14f28c5263
commit 05528f1c33
6 changed files with 133 additions and 17 deletions

View File

@@ -93,6 +93,7 @@ Route::middleware(['auth','verified','activeuser'])->group(function () {
->where('o','[0-9]+');
Route::match(['get','post'],'user/system/register',[SystemController::class,'system_register']);
Route::match(['post'],'user/system/link',[SystemController::class,'system_link']);
});
Route::get('network/{o}',[HomeController::class,'network']);