当前位置:首页 > CMS教程 > 其它CMS > 列表

laravel withCount 统计关联数量的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-28 20:35:49 浏览: 评论:0 

今天小编就为大家分享一篇laravel withCount 统计关联数量的方法,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。

统计关联数量,单个用法

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

Tags: laravel withCount

分享到: