L5.6-数据透视表上的关系 [英] L5.6 - Relation on pivot table

查看:112
本文介绍了L5.6-数据透视表上的关系的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在数据透视表表上有一个关系;我如何扩展它?

I've a relation on a pivot table; how I can expand It?

例如:

商店:

  • id
  • 名称

产品:

  • id
  • 名称

product_shop :

  • product_id
  • shop_id
  • field_1
  • field_2
  • field_3
  • table_A_id

表_A :

  • id
  • 名称

Shops模型中的多对多关系为:

The relation Many-to-Many in the Shops Model is:

class Shops extends Model {
    public function products()
    {
        return $this->belongsToMany('Products', 'product_shop', 'product_id', 'shop_id')->withPivot(
            'field_1',
            'field_3',
            'field_3',
            'table_A_id'
            )
            ->as('product_shop')
            ->withTimestamps();
    }

}

检索所有数据的查询是:

and the query to retrieve all data is:

class GetData extends Model {
     public static function getAll() {
         $query = Shops::with(
            'products'
            )->get();
     }
}

这将返回product_shop.table_A_id,但是我想扩展外键并检索table_A.name;有办法吗?

This return the product_shop.table_A_id but I'd like to expand the foreign key and retrieve table_A.name; is there a way?

谢谢.

推荐答案

您可以使用数据透视模型:

You can use a pivot model:

class ProductShopPivot extends \Illuminate\Database\Eloquent\Relations\Pivot
{
    public function tableA()
    {
        return $this->belongsTo(TableA::class);
    }
}

class Shops extends Model
{
    public function products()
    {
        return $this->belongsToMany('Products', 'product_shop', 'product_id', 'shop_id')
            ->withPivot(
                'field_1',
                'field_3',
                'field_3',
                'table_A_id'
            )
            ->as('product_shop')
            ->withTimestamps()
            ->using(ProductShopPivot::class);
    }
}

然后像这样访问它:

$shop->product_shop->tableA->name

不幸的是,没有办法渴望加载tableA关系.

Unfortunately, there is no way to eager load the tableA relation.

这篇关于L5.6-数据透视表上的关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆