Laravel order by hasmany relationship

前端 未结 2 932
小蘑菇
小蘑菇 2021-01-07 08:02

I have two eloquent models Threads and Comments , each thread hasMany comments.

While listing the threads, i need to order the threads by t

2条回答
  •  暖寄归人
    2021-01-07 08:20

    public function profiles()
    {
        return $this->hasMany('Models\v1\Admin\UserProfile', 'user_id')->leftJoin('user_field', 'user_profile.user_field_id', '=', 'user_field.id')->orderBy('order');
    }
    

提交回复
热议问题