Laravel Eloquent: Ordering results of all()

I’m stuck on a simple task.
I just need to order results coming from this call

$results = Project::all();

Where Project is a model. I’ve tried this

$results = Project::all()->orderBy("name");

But it didn’t work. Which is the better way to obtain all data from a table and get them ordered?

12 Answers
12

Leave a Comment