我有一个Section和一个Picture模型,具有一对多的关系(Section可以有很多图片; Picture只有一个Section)
我可以在给定节ID:
的情况下检索所有照片$section = '1';
$records = Picture::where('section_id', $section)->orderBy('position')->get();
如果我想通过Section slug(或名称)检索图片怎么办? 所有这些例子都不起作用:
$section = 'wedding';
$records = Picture::where('sections.slug', $section)->orderBy('position')->get(); // nope
$records = Picture::where($this->section()->slug, $section)->orderBy('position')->get(); // nope
我试图在Laravel文档中搜索,但我没有得到这个案例...... 谢谢