laravel 雄辩地按关系排序
我有 3 个模型
- 用户
- 渠道
- 答
模型关系
-
user
有belongsToMany('App\Channel');
-
channel
有hasMany('App\Reply', 'channel_id', 'id')->oldest();
假设我有 2 个通道 - 通道-1 - 通道-2
channel-2
有最新的回复比channel-1
现在,我想按其频道的当前回复对用户的频道进行排序。就像一些聊天应用程序。我怎么能像这样订购用户的频道?
- 通道-2
- 通道-1
我已经尝试了一些代码。但什么也没发生
// User Model
public function channels()
{
return $this->belongsToMany('App\Channel', 'channel_user')
->withPivot('is_approved')
->with(['replies'])
->orderBy('replies.created_at'); // error
}
// also
public function channels()
{
return $this->belongsToMany('App\Channel', 'channel_user')
->withPivot('is_approved')
->with(['replies' => function($qry) {
$qry->latest();
}]);
}
// but i did not get the expected result
编辑也,我试过这个。是的,我确实得到了预期的结果,但如果没有回复,它不会加载所有通道。
public function channels()
{
return $this->belongsToMany('App\Channel')
->withPivot('is_approved')
->join('replies', 'replies.channel_id', '=', 'channels.id')
->groupBy('replies.channel_id')
->orderBy('replies.created_at', 'ASC');
}
编辑: