laravel – how to get list of 3rd level deep relation
My model structure is as follows: Question hasMany Decision hasMany Impact morphTo Related So I'm trying to get a list of Questions with all of their Related objects deep inside. Example: {'question':1, relateds:[obj, obj, obj]} {'question':2, relateds:[obj, obj, obj]} {'question':3,…