Laravel nested relations eager load respect ancestor id
Let's say I have a model called Research. Each research belongsToMany Location models. And each Location model BelongsToMany Contact models. BUT, each Contact is also related to Research. class Research extends Model { protected $table = 'researches'; public function locations()…