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
$posts = Post::orderBy('created_at', 'desc')->get();
You can use the orderBy method. Replace the column name with the one you want.