etrepat / baum

Baum is an implementation of the Nested Set pattern for Laravel's Eloquent ORM.
http://etrepat.com/baum
MIT License
2.24k stars 459 forks source link

getDescendants() doesnt work #262

Open mbolukbasi opened 7 years ago

mbolukbasi commented 7 years ago

Hi, I have many root but I want to list only one root tree. I use that $list = Category::where('parent_id', $request->id)->getDescendants(array('id', 'category_name'));

but it doesnt work.

I use laravel 5.3. Is there any problem with this version?