我在树中有彼此相关的类别。每个类别hasMany
个孩子。每个最终类别hasMany
产品。
产品还belongsToMany
种不同的类型。
我想急切地用他们的孩子和产品加载类别,但我也想提出产品属于某种类型的条件。
这就是我的类别模型的样子
public function children()
{
return $this->hasMany('Category', 'parent_id', 'id');
}
public function products()
{
return $this->hasMany('Product', 'category_id', 'id');
}
产品型号
public function types()
{
return $this->belongsToMany(type::class, 'product_type');
}
在我的数据库中,我有四个表: 类别,产品,类型和产品类型
我尝试过这样急切的加载,但它会加载所有产品而不仅仅是满足条件的产品:
$parentLineCategories = ProductCategory::with('children')->with(['products'=> function ($query) {
$query->join('product_type', 'product_type.product_id', '=', 'product.id')
->where('product_type.type_id', '=', $SpecificID);
}]])->get();
答案 0 :(得分:3)
尝试是否符合您的需求,而不是当前查询。 (我的评论修改了我的答案如下)
$parentLineCategories = ProductCategory::with([
'children' => function ($child) use ($SpecificID) {
return $child->with([
'products' => function ($product) use ($SpecificID) {
return $product->with([
'types' => function ($type) use ($SpecificID) {
return $type->where('id', $SpecificID);
}
]);
}
]);
}
])->get();
答案 1 :(得分:0)
您可以使用whereHas
根据关系的存在来限制结果:
ProductCategory::with('children')
->with(['products' => function ($q) use($SpecificID) {
$q->whereHas('types', function($q) use($SpecificID) {
$q->where('types.id', $SpecificID)
});
}])
->get();