Laravel有一段关系
Laravel hasone relationship
我正在尝试使用 hasone 关系,但出现空错误。下面是我的代码
用户模型:
function profile()
{
$this->hasOne('App\Profile');
}
个人资料模型:
function User()
{
return $this->belongsTo('App\User');
}
注册控制器
protected function create(array $data)
{
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
if($user) {
$profile = new Profile();
$profile->name = 'Fake Name';
$profile->father = 'Fake Father';
$user->profile()->save($profile);
}
return $user;
}
Error: Call to a member function save() on null
将User.php改为
function profile()
{
return $this->hasOne('App\Profile');
}
您需要return关系实例。
我正在尝试使用 hasone 关系,但出现空错误。下面是我的代码
用户模型:
function profile()
{
$this->hasOne('App\Profile');
}
个人资料模型:
function User()
{
return $this->belongsTo('App\User');
}
注册控制器
protected function create(array $data)
{
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
if($user) {
$profile = new Profile();
$profile->name = 'Fake Name';
$profile->father = 'Fake Father';
$user->profile()->save($profile);
}
return $user;
}
Error: Call to a member function save() on null
将User.php改为
function profile()
{
return $this->hasOne('App\Profile');
}
您需要return关系实例。