简短说明:
在我的应用中,belongsToMany
与商店(belongsToMany
& shop_id
)存在多对多关系。因此,我有一个带有user_id
和Shop
的数据透视表。
Item
有许多Shop
,这属于/**
* User-Item relation
*
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
*/
public function items()
{
return $this->hasManyThrough(Item::class, Shop::class);
}
。
知道我需要通过属于用户的商店获取商品或商品数量。
我的表格:
用户:
商店:
shop_user:
项目:
"正常"方式没有按预期工作:
{{1}}