如何使用Laravel 5.4注销并重定向到登录页面?

问题描述:

我正在使用Laravel 5.4并尝试实现身份验证系统.我使用php artisan命令make:auth对其进行设置.我根据布局编辑了视图.现在,当我尝试注销时,抛出此错误

I am using Laravel 5.4 and trying to implement authentication system. I used php artisan command make:auth to setup it. I edited the views according to my layout. Now, when I am trying to logout it throwing me this error

NotFoundHttpException:

NotFoundHttpException in RouteCollection.php line 161:

有人可以帮助我如何注销吗?

could any one help me how to logout?

在您的web.php(路线)中:

添加:

Route::get('logout', '\App\Http\Controllers\Auth\LoginController@logout');

在您的LoginController.php

添加:

public function logout(Request $request) {
  Auth::logout();
  return redirect('/login');
}

此外,在namespace

添加:

use Auth;

现在,您可以使用yourdomain.com/logout URL登出,或者如果您已创建logout button,则将href添加到/logout

Now, you are able to logout using yourdomain.com/logout URL or if you have created logout button, add href to /logout