我知道是否可以检索与Eloquent关系的第一个元素。
这不起作用:
$posts = Post::with(['medias' => function($q) {
$q->where('type', 'landscape')
// not working
->limit(1);
// not working
->take(1);
// not working
->first();
}])->get();
这是一对多的关系。
提前谢谢!