我正在使用Laravel 5和Eloquent并且具有多对多关系设置如下
images
+----+---------------+------------------+
| id | image_name | image_location |
+----+---------------+------------------+
| 1 | kittens.jpg | C:\kittens.jpg |
| 2 | puppies.jpg | C:\puppies.jpg |
| 3 | airplanes.jpg | C:\airplanes.jpg |
| 4 | trains.jpg | C:\trains.jpg |
+----+---------------+------------------+
image_set (pivot table)
+------------+----------+
| set_id | image_id |
+------------+----------+
| 1 | 1 |
| 1 | 2 |
| 2 | 3 |
| 2 | 4 |
+------------+----------+
sets
+----+----------------+
| id | description |
+----+----------------+
| 1 | cute animals |
| 2 | transportation |
| 3 | food |
+----+----------------+
我在照片中创建了一个belongsToMany关系,并设置模型将这两者联系起来。
class Image extends Model {
public function sets()
{
return $this->belongsToMany('App\Set');
}
}
和
class Set extends Model {
public function images()
{
return $this->belongsToMany('App\Image');
}
}
我要完成的是执行查询,该查询仅向我提供与sets
相关联的images
。基本上加入sets
和image_set
表只返回1,2
我目前有一个相当长的查询工作......
$availSets = Set::join('image_set','image_set.set_id','=','sets.id')
->groupBy('sets.id')
->get();
但我已经看到很多例子,这也应该有效。
$availSets = Set::with('images')->get();
然而,它将返回所有3组,包括那些没有相关图像的组。
#relations: array:1 [▼
"images" => Collection {#179 ▼
#items: []
}
]
我错误地使用了这个吗? with()
应该以这种方式工作吗?