Order by using multiple columns and manually array field in Laravel? DB::raw
https://www.itsolutionstuff.com/post/order-by-using-multiple-columns-and-manually-array-field-in-laravelexample.html
Last updated
https://www.itsolutionstuff.com/post/order-by-using-multiple-columns-and-manually-array-field-in-laravelexample.html
Last updated
By Hardik Savani January 25, 2016 Category : LaravelPlayUnmuteLoaded: 1.17%Fullscreen
If you want to sort multiple columns in Laravel by using orderBy(). Whenever you need to give multiple column in your query then you can use twice time orderBy() and give them. you can give multiple columns in laravel by following example :
Users Table :
1
4
7
john
john@gmail.com
2
3
4
ram
ram@gmail.com
3
4
2
ader
ader@gmail.com
4
3
1
jay
jay@gmail.com
5
4
1
yamee
yamee@gmail.com
Multiple Columns OrderBy
Result :
4
3
1
jay
jay@gmail.com
2
3
4
ram
ram@gmail.com
5
4
1
yamee
yamee@gmail.com
3
4
2
ader
ader@gmail.com
1
4
7
john
john@gmail.com
you can also give array in order by method, Laravel give facility to sort manual array in order by, following example through specific array in order by.
Result :
3
4
2
ader
ader@gmail.com
1
4
7
john
john@gmail.com
4
3
1
jay
jay@gmail.com
5
4
1
yamee
yamee@gmail.com
2
3
4
ram
ram@gmail.com
we are using string in order by like pending, approved and rejected status then following example are useful.
if you want to give ‘ASC’ or ‘DESC’ order in query then following example :
Read Also: Laravel - Orderby Random using rand() and DB::raw() example
Try this....