Answers for "laravel order by in pgsql"

PHP
2

laravel order by

$users = DB::table('users')
         -> orderBy('name', 'desc')
         -> get();
Posted by: Guest on March-09-2021
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