时间:2022-01-18 10:21:32 | 栏目:PHP代码 | 点击:次
统计关联数量,单个用法
$posts = Post::withCount('comments')->orderBy('id','desc')->paginate(6);
多个用法
$posts = Post::withCount(['comments','zans'])->orderBy('id','desc')->paginate(6);
调用
$post->comments_count
一定要是5.3版本之后,5.2和5.1都会报方法未定义