验证后调用用户模型产生错误调用未定义的方法Illuminate \ Auth \ GenericUser

时间:2014-07-06 02:11:25

标签: php authentication laravel-4

我一直在尝试在登录后在用户模型中执行方法。我了解到您执行以下操作:Auth::user()->foo();

由于某些原因,这不起作用。

User.php

中的代码
<?php
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface {

    use UserTrait, RemindableTrait;
    protected $table = 'users';
    protected $hidden = array('password', 'remember_token');

    public function foo(){
        return "foo";
    }
}

routes.php

中的代码
<?php
Route::get('/', function(){
    return View::make('hello');
});

Route::get('users', function(){
    if (Auth::attempt(array('email' => 'tom@blah.com', 'password' => 'Tom')))echo 'Auth-true';
    echo Auth::id();
    if(Auth::check())echo 'checked';
    Auth::user()->foo();
});

echo Auth :: id()和Auth:check()都工作,Auth:user() - &gt; foo();失败

错误消息

Symfony \ Component \ Debug \ Exception \ FatalErrorException

Call to undefined method Illuminate\Auth\GenericUser::foo()

1 个答案:

答案 0 :(得分:3)

确保app/config/auth.php'driver' => 'eloquent'。因此它将使用您的Eloquent用户模型。