Answers for "php artisan orderByDesc"

PHP
6

order By Asc in laravbel

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

laravel order by

$users = DB::table('users')
         -> orderBy('name', 'desc')
         -> get();
Posted by: Guest on March-09-2021
0

laravel 6 orderby

// Make sure column names are correct
$inquiries = Inquiry::orderBy('status', 'ASC')
    ->orderBy('created_at', 'DESC')
    ->get();
Posted by: Guest on December-07-2020
0

php artisan orderByDesc

$noticias = Noticia::orderByDesc('created_at')->limit(10)->get();
Posted by: Guest on October-13-2021

Browse Popular Code Answers by Language