true, 'logout' => true, 'register' => true, 'reset' => true, // for resetting passwords 'confirm' => true, // for additional password confirmations 'verify' => true, // for email verification ]); Route::get('logout',[LoginController::class,'logout']); Route::get('/',[HomeController::class,'welcome']); Route::get('network/{name}',[HomeController::class,'network']); Route::get('home',[HomeController::class,'home']);