duanduo3712 2019-01-16 02:44
浏览 71
已采纳

Laravel Eloquent Eager从多个表中加载

I'm relatively new to Laravel and only recently started to learn about eager loading. Currently, I have a project in which I was required to develop an app for connection between companies and partners.

Connection can either be between company-company, partner-partner or company-partner. For now, I stored all the connections in one Connection table as shown here:

In Connection class, I use polymorphic to retrieve all the connections for a company/partner:

public function connectable()
{
    return $this->morphTo();
}

And this function in Partner and Company classes:

public function my_connection()
{
    return $this->morphMany(Connection::class, 'connectable', 'model_type', 'model_id');
}

I can retrieve the list of connections just fine, but problem arise when I want to get the details for each connected company/partner. I want to use eager load in Connection class as below but it only manage to either get from company or partner but not both

protected $with = [
    'following'
];

public function following()
{
    return $this->belongsTo(Company::class, 'connect_to', 'id');
}

Is it possible to do this? Or should I separate company and partner connections into different tables?

Edit: By connection, I meant a partner or company can connect/follow each other like the usual social media app. It wasn't mutual tho. Say, if Partner A follow Partner B, then only that connection will be stored. Partner B is still considered not connected to A.

  • 写回答

1条回答 默认 最新

  • douwu5009 2019-01-16 08:41
    关注

    I am not sure exactly which model do you want to eager load (i.e. model_type or connect_type), but in either case you can use a morphTo relation, as in:

    public function following()
        {
            return $this->morphTo(null, $type = 'connect_type', $id = 'connect_to');
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵