I\'m stuck on a simple task. I just need to order results coming from this call
$results = Project::all();
Where Project is
Project
Laravel 5.4 added orderByDesc() methods to query builder:
$results = Project::orderByDesc('name')->get();