Releases: webrium/foxdb
Releases · webrium/foxdb
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();