add:新增Collection toTree方法

This commit is contained in:
JaguarJack
2020-10-21 08:12:07 +08:00
parent 538006c3c6
commit 9baadccfbb
7 changed files with 43 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace catcher;
use think\model\Collection;
class CatchModelCollection extends Collection
{
public function toTree($pid = 0, $pidField = 'parent_id', $children = 'children')
{
return Tree::done($this->items, $pid, $pidField, $children);
}
}