Laravel 5 Eloquent, double one-to-one save (get Id before save) -
$profile = new profile; $user = new user; $user['profile_id'] = $profile['id']; $profile['user_id'] = $user['id']; $profile->save(); $user->save();
so have relationships setup using "hasone" in both models files. these not null foreign keys need define id relationship immediately. ['id'] not available until after save. how can these 2 save operations @ same time?
you should have foreign key in 1 of tables, , define other relationship belongsto
edit
if keep user_id in profiles table, add user model
public function profile() { return $this->hasone('app\profile'); }
then can this
$user = new user; $user->save(); $user->profile()->save(new profile());
Comments
Post a Comment