rtablada / OrderedEloquent by rtablada

An extension of Eloquent ORM for automatically ordering results
18
3
2
Package Data
Maintainer Username: rtablada
Maintainer Contact: ryan.tablada@gmail.com (Ryan Tablada)
Package Create Date: 2013-08-01
Package Last Update: 2014-03-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 15:00:52
Package Statistics
Total Downloads: 18
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Warning

This package is no longer under active development. This was a quick fix for a submitted issue on the Laravel Repository. I will continue to keep an eye on Pull Requests, but will not be actively tracking issues.

Installation

Add 'rtablada/ordered-eloquent': '~1' to your composer.json and extend Rtablada\OrderedEloquent\Model.

You can also replace the Eloquent alias with Rtablada\OrderedEloquent\Model in your app/config/app.php.

Use

Set the $orderBy property to the column you want all queries sorted by.

Note this sort will occur on ALL queries

You can also set the $sortDir to set the sort direction (this defaults to ASC).