dongpao1083 2017-01-13 15:45
浏览 251
已采纳

两个表之间的Laravel关系有两个外键

Hey how can I make relationships between two table.

Users: id, email
Notification: id, user_id(id of the logged user), client_id(id of sender)

I would like make relationship between users and notifications by user_id and client_id. Then I will can get all notifications assigned to logged user, and get email of sender users.

I made that:

    public function notifications_with_client() {
    return $this->hasManyThrough('App\Models\User', 'App\Models\Notification', 'user_id', 'id', 'client_id');
}

But when I using query i got good notifications but with wrong email. I got email from ralationship id(from users table) == id(from notifications table)

My query

$column = 'notifications_with_client';
$value[1] = ['email', 'notifications.id', 'client_id'];
$query->with([$column => function($query) use ($value) {
                      $query->select($value[1]);
                  }]);

Someone know what I do wrong?

  • 写回答

3条回答 默认 最新

  • dongpu2694 2017-01-13 16:25
    关注

    You can try it by defining the following relations:

    User Model

    public function notifications()
    {
        return $this->hasMany('App\Models\Notification');
    }
    

    Notification Model

    public function to()
    {
      return $this->belongsTo('App\Models\User', 'user_id');
    }
    
    public function from()
    {
      return $this->belongsTo('App\Models\User', 'client_id');
    }
    

    And then you can query it as:

    $notifications = auth()->user()->notifications()->with('from')->get();
    

    Or if you just want email then query it as:

    $notifications = auth()->user()
                        ->notifications()
                        ->with(['from' => function($q) {
                            $q->select('email');
                        }])
                        ->get();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 征集Python提取PDF文字属性的代码
  • ¥15 如何联系真正的开发者而非公司
  • ¥15 有偿求苍穹外卖环境配置
  • ¥15 代码在keil5里变成了这样怎么办啊,文件图像也变了,
  • ¥20 Ue4.26打包win64bit报错,如何解决?(语言-c++)
  • ¥15 clousx6整点报时指令怎么写
  • ¥30 远程帮我安装软件及库文件
  • ¥15 关于#自动化#的问题:如何通过电脑控制多相机同步拍照或摄影(相机或者摄影模组数量大于60),并将所有采集的照片或视频以一定编码规则存放至规定电脑文件夹内
  • ¥20 (求远程解决)深信服vpn-2050这台设备如何配置才能成功联网?
  • ¥15 Arduino的wifi连接,如何关闭低功耗模式?