Answers for "laravel how to order by in with"

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

Code answers related to "laravel how to order by in with"

Browse Popular Code Answers by Language