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

You May Ordered Children with adding this method.

Open irvine48 opened this issue 1 year ago • 0 comments

In your model file,

use NodeTrait;

public function ordered_children()
{
    return $this->children()->orderBy('_lft');
}

substitute your eager loading children method with method you newly create with defined scope.

Enjoy

irvine48 avatar Jun 16 '23 03:06 irvine48