Hii Everyone,
I want to sort multiple columns in Laravel by using the method orderBy() in Laravel Eloquent.
The query will be generated using Eloquent like this:
SELECT *
FROM mytable
ORDER BY
coloumn1 DESC, coloumn2 ASC
How can I do this? Any help will be great!