雄辩地从中间表获取表

时间:2018-07-11 08:03:42

标签: laravel eloquent

我下面有3张桌子

Products
+id
+Name

ProductAttributes
+id
+name
+value
+product_id
+attribute_group_id


AttributeGroups
+id
+name


relation
---------
Product hasmany ProductAtrribute

ProductAtrributes belongsTo Products

ProductAtrributes belongsTo AttributeGroups

我希望加载带有属性的产品和属性组以及属性组

1 个答案:

答案 0 :(得分:0)

您可以使用BelongsToMany关系:

eval
相关问题