Eloquent eager load Order by

后端 未结 7 2122
花落未央
花落未央 2020-11-27 13:56

I have problem with eloquent query. I am using eager loading (one to one Relationship) to get \'student\' With the \'exam\', Using the code

7条回答
  •  一向
    一向 (楼主)
    2020-11-27 14:56

    Try this:

    Student::with(array('exam' => function($query) {
            $query->orderBy('result', 'DESC');
        }))
        ->get();
    

提交回复
热议问题