我们可以用下面的关联插入来添加评论
$post = App\Post::find(1);
$post->comments()->create(['content' => 'This is a great tutorial']);
那么问题来了,comments
表有 user_id
,怎么通过关联来插入,而不是通过下面的方法
$post->comments()->create(['content' => 'This is a great tutorial', 'user_id' => 10]);