当前位置:主页 > 软件编程 > PHP代码 >

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都会报方法未定义

您可能感兴趣的文章:

相关文章