Laravel 4: how to “order by” using Eloquent ORM [duplicate]

If you are using post as a model (without dependency injection), you can also do:

$posts = Post::orderBy('id', 'DESC')->get();

Leave a Comment