I have two queries, the first one gives me an array of ids, that is in a specific order. Then that array of ids I pass it to the second query like so:
Operation::whereIn('id', $ids)->get();
But when I output the result of that query, the order has changed, if the array $ids was something like (4,2,6,9) which is the order I wanted the results to be in, the output will give me 2,4,6,9. How can I avoid that?