laravel sentry使用自定义密码字段创建用户

时间:2014-10-30 12:18:01

标签: php laravel laravel-4 cartalyst-sentry

我正在尝试使用Sentry创建用户,但用户表上的密码字段为user_password。

$user = Sentry::createUser(array(
    'full_name'   => $input['name'],
    'email'    => $input['email'],
    'user_password'    => $input['password']
));

但它一直在抛出错误,用户[ @ .com]需要密码,没有给出密码。

当我将user_password更改为密码时,它会抛出错误,找不到列:1054'字段列表'中的未知列'密码'。

1 个答案:

答案 0 :(得分:1)

try it
$user = Sentry::register(array(
    'full_name'   => $input['name'],
    'email'    => $input['email'],
    'password'    => $input['password']
));