Laravel 8 递归保存模型和关联数据
如果你想 save
你的模型及其所有关联数据,你可以使用 push
方法:
$post = App\Models\Post::find(1);
$post->comments[0]->message = 'Message';
$post->comments[0]->author->name = 'Author Name';
$post->push();
如果你想 save
你的模型及其所有关联数据,你可以使用 push
方法:
$post = App\Models\Post::find(1);
$post->comments[0]->message = 'Message';
$post->comments[0]->author->name = 'Author Name';
$post->push();