I have problem with eloquent query. I am using eager loading (one to one Relationship) to get \'student\' With the \'exam\', Using the code
Try this:
Student::with(array('exam' => function($query) { $query->orderBy('result', 'DESC'); })) ->get();