We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
As stated in the documentation, descendants can be eagerly loaded:
descendants
Node has many descendants
But is it possible to use Nested Eager Loading with descendants?
For example, something like:
$article->comments() ->whereIsRoot() ->with('descendants.author') ->get();