We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I made a referral system. Each User is related with another user by parent_id. And I have some relations on User such as Level, Transactions etc.
User::find(1)->descendants()->with(['level', 'transactions'])->get()
This doesn't work.