Retrieving relationships of relationships using Eloquent in Laravel
It’s in the official documentation under “Eager Loading” Multiple relationships: $books = Book::with(‘author’, ‘publisher’)->get(); Nested relationships: $books = Book::with(‘author.contacts’)->get(); So for you: Advert::with(‘Car.Model’)->find(1);