无限极分类
Posted fenle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无限极分类相关的知识,希望对你有一定的参考价值。
class CategoryController extends Controller public function index() $rootCats = Category::where(‘parent_id‘, null)->get(); return $this->tree($rootCats); private function tree($cats) $tree = []; foreach ($cats as $cat) $childrenCats = Category::where(‘parent_id‘, $cat->id)->get(); if ($childrenCats->isNotEmpty()) $cat->children = $this->tree($childrenCats); $tree[] = $cat; return $tree;
以上是关于无限极分类的主要内容,如果未能解决你的问题,请参考以下文章