将我的Laravel网站上传到我的生产服务器后,我收到错误。
BadMethodCallException in Controller.php line 103:
Method [guestMiddleware] does not exist.
我不知道从哪里开始调试应用程序。在不需要Auth的页面上,它们可以正常加载。
非常感谢任何建议。
答案 0 :(得分:2)
将$this->guestMiddleware()
更改为'来宾'
public function __construct()
{
//$this->middleware($this->guestMiddleware(), ['except' => 'logout']);
//You can see the example here https://laravel-china.org/docs/5.3/controllers
$this->middleware('guest', ['except' => 'logout']);
}
答案 1 :(得分:1)
作曲家没有使用最新版本
答案 2 :(得分:0)
你定义了guestMiddleware吗?