Sort duplicates by id

This commit is contained in:
Deon George 2024-10-05 21:46:09 +10:00
parent b3f381b743
commit 925138baa5

View File

@ -147,7 +147,8 @@ abstract class Catalog extends Model
$q->where('software_id','=',$this->attributes['software_id']); $q->where('software_id','=',$this->attributes['software_id']);
} }
}); })
->orderBy('id');
return $query; return $query;
} }