我正在使用 Sentry 2.1 进行身份验证。
我的用户模型:
<?php namespace App\Models;
use Eloquent;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends \Cartalyst\Sentry\Users\Eloquent\User implements UserInterface, RemindableInterface {
/* Sentry Defaults omitted for brevity */
public function children()
{
return $this->hasMany('App\Models\Children');
}
public function getFullNameAttribute()
{
return trim($this->attributes['first_name'] . ' ' . $this->attributes['last_name']);
}
}
我的登录功能:
$credentials = array(
'email' => Input::get('email'),
'password' => Input::get('password')
);
if (Auth::attempt($credentials))
{
$user = Sentry::authenticate($credentials, $remember);
return Redirect::to('/');
}
我使用 Auth::attempt 然后 Sentry::authenticate 的原因是因为我正在从旧数据库迁移到新数据库,所以我在 auth.attempt 上附加了一个钩子/侦听器,以便我可以处理检查旧密码.
现在,在我登录后,我无法访问 full_name 访问器属性。
$user = Sentry::getUser();
echo $user->full_name; // results in NULL
我想我在这里遗漏了一件小东西,但我就是找不到那个遗失的部分。
谢谢您的帮助!