您的位置:首页 > 编程学习 > > 正文

laravel模型个数(laravel withCount 统计关联数量的方法)

更多 时间:2021-10-08 00:21:07 类别:编程学习 浏览量:2259

laravel模型个数

laravel withCount 统计关联数量的方法

统计关联数量,单个用法

  • ?
  • 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

    您可能感兴趣