作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助定义下表的关系
product
id
name
modifier
id
name
modifier_items
id
modifier_id
name
price
modifier_product
id
modifier_id
product_id
一个产品可以有多个修饰符
请帮我定义 Laravel 中输出预期结果的关系
产品模型的预期结果
i.e Product::with([...])->get()
id: 1,
name: "Product name", // (Product name)
modifiers: [
{
id: 1, // modifier_id
name: "some name 1",
items: [
{
id: 1, // modifier_item_id,
name: "modifier name",
price: 10
},
{
id: 2, // modifier_item_id,
name: "modifier name",
price: 20
}
]
},
{
name: "some name 2",
items: [] // Collection of Modifier items
},
]
最佳答案
试试这个
模型 Product.php
public function modifiers()
{
return $this->belongsToMany(Modifier::class, 'modifier_product'); // Modifier::class is Modifier Model and modifier_product is table name
}
模型 Modifier.php
public function modifierItems()
{
return $this->hasMany(ModifierItem::class); //modifier_items Model
}
你可以检索
Product::with('modifiers')->get(); //get product with modifiers
or
Product::with('modifiers.modifierItems')->get(); //get product with modifiers and modifier_items
关于php - Laravel 定义复杂关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55276650/
我是一名优秀的程序员,十分优秀!