Skip to content
Advertisement

Laravel sort collection and then by key

I am making raking system for my users and here’s what I have so far:

Get all users and sort them by points – it works fine.

JavaScript

Find your position in ranking – it works fine

JavaScript

Get myself and users above/under me – it doesn’t work. I get random users. It looks like the collection is not sorted anymore.

JavaScript

Please help me with this one or give some hint on another approach(light weight for many records)

Advertisement

Answer

I think the problem is this:

When you call User::all() you get something like this:

JavaScript

Then you use the sortBy function, which reorder the collection, but does not reset the keys. So you end up with something like this:

JavaScript

So using position -1, position, and position +1 makes no sense here.

What you can do is using the values() function, which will reset the keys of you collection:

JavaScript

So I think the following code would work.

JavaScript

And then get 3 users from positions – 1 to position + 1:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement