【发布时间】:2019-04-24 05:31:02
【问题描述】:
在 laravel 5.7 中,当我要单击注销按钮时,注销功能不起作用,它向我显示此错误 /var/www/html/orderManager/vendor/auth0/login/src/Auth0/Login/Auth0Service.php
$this->authApi = new Authentication($this->auth0Config['domain'],
$this->auth0Config['client_id']);
“未定义索引:域”
web.php
Route::get('logout', 'HomeController@logout');
HomeController.php
public function logout() {
Auth::logout();
Session::flush();
return redirect('/login');
}
【问题讨论】:
-
你在
config/laravel-auth0.php中设置了domain吗? -
你有没有尝试阅读这条消息?
标签: php laravel-5.7