Releases: webrium/foxdb
Releases · webrium/foxdb
3.0.2
What's Changed
- Fix pagination logic in paginate() method by @mudassaralichouhan in #28
New Contributors
- @mudassaralichouhan made their first contribution in #28
Full Changelog: 3.0.1...3.0.2
FoxDB 3.0.1
FoxDB 3.0.0
Full Changelog: 2.1.10...3.0.0
FoxDB query builder version 3.0.0-beta
Full Changelog: 2.1.10...3.0.0-beta
2.1.10
2.1.9
2.1.8
A feature was created to be able to sort different columns with different types
$list = Meeting::where('client_id', $client->id)
->orderBy([['date','DESC'], ['start_at','ASC']])
->get();
If the sorting for all columns is ASC or DESC, you can do as follows
$list = Meeting::where('client_id', $client->id)
->orderBy(['date', 'start_at'], 'DESC')
->get();