I would know if it's possible to retrieve the first element of relation with Eloquent.
This doesn't work:
$posts = Post::with(['medias' => function($q) {
$q->where('type', 'landscape')
// not working
->limit(1);
// not working
->take(1);
// not working
->first();
}])->get();
This is a one-to-many relation.
Thank you in advance !