Answers for "laravel order by with all"

PHP
10

get data in orderby in laravel

->orderBy('id', 'DESC');
Posted by: Guest on October-05-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