gpt4 book ai didi

php - Laravel 定义复​​杂关系

转载 作者:行者123 更新时间:2023-11-29 07:23:01 24 4
gpt4 key购买 nike

我需要帮助定义下表的关系

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com