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.