0

我正在使用 Laravel 4.1,facebook/php-sdk实际上与哨兵一起使用它来自这个问题的答案: Facebook Login with Sentry, A password is required for user [email], none given

此代码不再起作用:

    $profile = $user->profiles()->save($profile);

抛出此错误: 在此处输入图像描述

如何解决?

路线可在此处获得路线代码

我的模型如下:

型材型号:

<?php

class Profile extends \Eloquent {

    public function user()
    {
        return $this->belongsTo('User');
    }

}

用户模型包含:

public function profiles()
{
    return $this->hasMany('Profile');
}
4

1 回答 1

0

在评论中解决:

您是否使用此方法http://forums.laravel.io/viewtopic.php?pid=48274#p48274自定义模型哨兵?– 用户 1279647

于 2014-06-02T00:51:56.820 回答