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条)

报告相同问题?

悬赏问题

  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?