Change network/ to domain/view/

This commit is contained in:
2023-10-05 22:59:59 +11:00
parent 654e7bd2aa
commit 7a9b6d5015
7 changed files with 20 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ Route::get('admin/switch/stop',[UserSwitchController::class,'user_switch_stop'])
Route::get('/',[HomeController::class,'home']);
Route::view('about','about');
Route::view('domain/list','domain.list');
Route::get('network/{o}',[HomeController::class,'network'])
Route::get('domain/view/{o}',[DomainController::class,'view'])
->where('o','[0-9]+');
Route::match(['get','post'],'pkt',[HomeController::class,'pkt']);
Route::view('system/list','system.list');