标签: json laravel laravel-5 eager-loading
我有一个Post模型,其中有很多评论通过hasMany(' App / Comment')关系。我试图以JSON格式返回评论数量。我想得到的回答就像是
comments: [...], numComments: 5, ...
我可以返回评论,但我不知道是否有一种简单的方法可以通过热切的加载获得评论数量。
Post::whereIn('user_id', $ids)->with('comments')->get();
感谢。
答案 0 :(得分:0)
刚刚找到解决方案here。