Laravel雄辩地渴望加载两个数据透视表

时间:2018-06-19 18:24:31

标签: mysql laravel eloquent eager-loading

我正试图加载一个属性,该属性是通过组和另一个具有相关枢轴的表拼接而成的。 这是表格:

Categories
--------------------
id

Attributes
--------------------
id
attribute_set_id


Attribute_Groups
----------------------------
id


Categories_Attribute_Groups
-----------------------------
category_id
attribute_group_id


Categories_Additional_Attributes
-----------------------------
category_id
attribute_id


Class Category extends eloquent
{

    // how to achieve this
    public function attributes()
    {
        // all attributes that can be eager load
    }
}

我如何才能获得Category模型中的所有属性并渴望加载它们?

1 个答案:

答案 0 :(得分:0)

在类别模型中,您可以使用属性和属性组将2个关系定义为belongsToMany

Class Category extends eloquent
{

    public function attributes()
    {
        return $this->belongsToMany(Attribute::class, 'Categories_Additional_Attributes', 'category_id');
    }

    public function attribute_groups()
    {
        return $this->belongsToMany(AttributeGroups::class, 'Categories_Attribute_Groups', 'category_id');
    }
}

现在您可以将它们作为

Category::with(['attributes', 'attribute_groups'])->get();

对于双向映射,您可以将它们定义为

Class Attribute extends eloquent
{

    public function categories()
    {
        return $this->belongsToMany(Category::class, 'Categories_Additional_Attributes', 'attribute_id');
    }
}

Class AttributeGroups extends eloquent
{

    public function categories()
    {
        return $this->belongsToMany(Category::class, 'Categories_Attribute_Groups', 'attribute_group_id');
    }
}