$users = User::with(['student' => function ($q) {
$q->orderBy('id', 'desc');
}]);
add the code to relationship in the method of the model
public function room(){
return $this->hasMany(room::class, 'id')->orderBy('id', 'DESC') ;
}