//model 中
public function children() { return $this->hasMany(get_class($this), 'pid', 'id') ->with('children'); } public static function list($limit) { $data = self::with('children') ->where('status', 1) ->where('pid', 0) ->latest('id'); if ($limit) { return $data->paginate($limit); } return $data->get(); }
相关文章
- 10-04从贝叶斯模型(Bayes)到生成模型(Generative models)(生成式分类器,generative classifier)
- 10-04Chinese Word Semantic Relation Classification 中文词语语义关系分类
- 10-04RFID电子标签的分类及区别
- 10-04SPOJ 2916 Can you answer these queries V(线段树-分类讨论)
- 10-04一种联合分类与检测训练的方法——YOLO9000
- 10-0425 触发器逻辑功能的分类
- 10-04select document library from certain list 分类: Sharepoint 2015-07-05 07:52 6人阅读 评论(0) 收藏
- 10-04Laravel 开发环境搭建 - Windows
- 10-04教程 | 如何使用TensorFlow实现音频分类任务
- 10-04图像分类资源汇总----持续跟新