我正在使用 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');
}