为什么我从AuthManager获得ErrorException?

时间:2016-06-21 04:55:22

标签: laravel-5

我正在尝试使用Ajax格式对Laravel中的用户进行身份验证。用户通过身份验证后,将重定向到首页。在这个首页上,我试图设置和使用模型方法并显示用户的名称 - 如Auth::model_name()->method,但它显示此错误:

  

AuthManager中的ErrorException php call_user_func_array()期望参数1是有效的回调,类'Illuminate \ Auth \ SessionGuard'

前端代码:

if (!Auth::check()){
<a href="#" class="login-menu hide" data-toggle="modal" data-target="#myModal">Login2</a> 
<a href="#" class="dropdown-toggle show" data-toggle="dropdown">

{{ Auth::Hublancers_users()->username }} 
}
else{ 
<a href="{{ route('Login') }}" class="login-menu show">Login</a> 
<a href="#" class="dropdown-toggle hide" data-toggle="dropdown">
}

为什么我会收到此错误,我该如何解决?

0 个答案:

没有答案