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

Something wrong when eager loading descendants

Open CreationLee opened this issue 3 years ago • 0 comments

I am using like $comments = Comment::whereIsRoot()->with('descendants')->paginate(); but wrong result returned, such as ,somecomment has one descendants, but it returned nothing, some comment get 4 descendants but it only returned 2 or less. When i'm using `$comments = Comment::whereIsRoot()->get();

foreach($comments as $comment) { $descendants = $comment->descendants; } ` The result is correct

CreationLee avatar Mar 09 '21 09:03 CreationLee