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

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料