卡在注销路径中

时间:2018-06-21 14:11:34

标签: php

大家好,我是laravel和编程一般的新手,自从我开始创建以来,我只创建了一些应用程序,我一直在使用auth和auth :: logout()函数,该函数一直在起作用,但是现在看来了解为什么我尝试注销用户时出现此错误

这是错误图像和我的路线代码的链接

Error link

Route

请帮帮我,谢谢您

1 个答案:

答案 0 :(得分:4)

将登出路线中的帖子更改为:

Route::get('/signout', function(){
    Auth::logout();
    return redirect('/')->with('error', 'You were logged out successfully!');
});