Laravel 5.1 - 返回具有多种关系的雄辩模型

I have the following models Show, Presenter, Image.

Shows can have multiple presenters. Presenters have one image.

I can do this to get a presenter with their image:

$presenter = Presenter::with('image)->find(1);

And I can do this to get a show with presenters:

$show = Show::with('presenters')->find(1);

Is there a way I can return a show with presenters and their image in one statement?

You can use the dot notation to eager load nested relationships.

$show = Show::with('presenters.image')->find(1);

If you defined your relations you can get them all in one query very easy:

http://laravel.com/docs/5.1/eloquent-relationships#querying-relations