加入laravel的关系

时间:2015-02-27 15:06:25

标签: laravel-4 eloquent

我有一个产品具有一个功能,一个功能有很多值,所以我将功能与产品和产品的值相关联

所以我搜索

Product::with('features', 'features.featureValue.product')->get();

我怎样才能制作像

这样的东西
Product::with('features', 'features.featureValue')
->where('features.featureValue.product.id','=', 'id')->get();

即使可能,我的意思是如何使用内在属性查询上层关系?

0 个答案:

没有答案