Goez/TreeData is an adjacency list visitor for Eloquent model.
Goez/TreeData is designed for Laravel 4.2+, just follow the steps below:
-
Install from composer.
composer require goez/tree-data
-
Add
tree
method in your eloquant model:use Goez\TreeData\Tree; use Illuminate\Database\Eloquent\Model as Eloquent; class Menu extends Eloquent { /** * @return \Goez\TreeData\Visitor\Eloquent */ public function tree() { return Tree::accept($this); } }
Find examples in tests
folder.
MIT