我有三个表-产品,功能和product_feature-
products
- id
- name
features
- id
- key
product_feature
- product_id
- feature_id
- value
我检索了产品的所有(键,值)对。 SQL语句是
SELECT key, value FROM products
JOIN product_feature pf
ON pf.product_id = "Product ID"
JOIN features f
ON f.id = pf.feature_id
我如何建立这种关系
// Inside Product model
function features() {
// Has many through relationship
}
答案 0 :(得分:0)
这是BelongsToMany
关系:
public function features() {
return $this->belongsToMany(Feature::class, 'product_feature')->withPivot('value');
}
foreach($product->features as $feature) {
// $feature->key
// $feature->pivot->value
}