I\'m stuck on a simple task. I just need to order results coming from this call
$results = Project::all();
Where Project is
Project
While you need result for date as desc
$results = Project::latest('created_at')->get();