Answers for "order by and orderBy in laravel"

PHP
5

order By Asc in laravbel

->orderBy('id', 'DESC');
Posted by: Guest on October-05-2020
-1

laravel 6 orderby

$inquiries = Inquiry::all()->sortByDesc('created_at')->sortByDesc('Status')->values();
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language