获得与Eloquent的关系的第一个元素

时间:2014-12-17 15:13:28

标签: php mysql laravel eloquent

我知道是否可以检索与Eloquent关系的第一个元素。

这不起作用:

$posts = Post::with(['medias' => function($q) {
    $q->where('type', 'landscape')
      // not working
      ->limit(1);
      // not working
      ->take(1);
      // not working
      ->first();
}])->get();

这是一对多的关系。

提前谢谢!

0 个答案:

没有答案