LoginSignup
6
3

More than 5 years have passed since last update.

[Laravel5.7] Eloquent リレーションで新たに追加された push メソド

Posted at

push メソド : 再帰的に保存

5.7から追加されたメソド。
push を使えば全部のリレーションに対し、再帰的に save することができる。
(親のidが子の該当カラムに自動的に入る)

$post = App\Post::find(1);

$post->comments[0]->message = 'Message';
$post->comments[0]->author->name = 'Author Name';

$post->push();

公式ドキュメント

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3