laravel-nestedset icon indicating copy to clipboard operation
laravel-nestedset copied to clipboard

Ordering items by alphabetical order

Open recci opened this issue 6 years ago • 2 comments

How do I order the following results set alphabetically?

$towns = Area::descendantsOf($rootId)->toTree($rootId);

recci avatar Jul 24 '19 00:07 recci

Hello, did you manage to order the items? I need it too...

garbinmarcelo avatar Mar 24 '20 16:03 garbinmarcelo

In case anyone comes here looking for the solution, just use orderBy when getting the records from the DB:

$categories = Category::orderBy('name')->get()->toTree();

seanfoushee avatar Apr 23 '22 21:04 seanfoushee