Retrieving relationships of relationships using Eloquent in Laravel

前端 未结 3 1010
醉梦人生
醉梦人生 2020-12-25 11:18

I have a database with the following tables and relationships:

Advert 1-1 Car m-1 Model m-1 Brand

If I want to retriev

3条回答
  •  温柔的废话
    2020-12-25 12:02

    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::find(1)->with('Car.Model')->get();
    

提交回复
热议问题