I get the full collection of a Model with the following:
$posts = Post::all();
However I want this is reverse chronological order.
What is t
You can now use sortBy or sortByDesc:
sortBy
sortByDesc
$posts = Post::all()->sortBy('created_at');