我在Laravel 5.3错误:Illuminate\Auth\AuthenticationException Unauthenticated.
中遇到了graham-campbell / exceptions和auth的问题。我读了主题https://github.com/GrahamCampbell/Laravel-Exceptions/issues/80,但它无法帮助我解决问题仍然存在。
throw new AuthenticationException
public function authenticate()
{
if (! is_null($user = $this->user())) {
return $user;
}
throw new AuthenticationException; // I take error here
}
我需要别人的帮助,谢谢你回答我的问题