laravel withCount 统计关联数量的方法
吾爱主题
阅读:227
2021-08-29 16:15:00
评论:0
统计关联数量,单个用法
?1 | $posts = Post::withCount( 'comments' )->orderBy( 'id' , 'desc' )->paginate(6); |
多个用法
?1 | $posts = Post::withCount([ 'comments' , 'zans' ])->orderBy( 'id' , 'desc' )->paginate(6); |
调用
?1 | $post ->comments_count |
一定要是5.3版本之后,5.2和5.1都会报方法未定义
以上这篇laravel withCount 统计关联数量的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u011323949/article/details/85273328
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。