这个问题在这里已有答案:
我有三个实体User,Blog和Comments。我可以使用以下代码加载用户博客:
$userBlogs = User::with('blogs')->get();
但是,如何加载与每个博客相关的评论呢?
用户:
public function blogs() {
return $this->hasMany(Blog::class);
}
博客:
public function comments() {
return $this->hasMany(Comments::class);
}
你可以这样做
$userBlogs = User::with('blogs.comments')->get();
或者你可以
$userBlogs = User::with(['blogs' => function ($query) {
$query->with('comments');
}]