laravel withCount 统计关联数量的方法
时间: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都会报方法未定义
栏 目:PHP代码
下一篇:php数组遍历类与用法示例
本文标题:laravel withCount 统计关联数量的方法
本文地址:http://www.codeinn.net/misctech/190580.html