Answers for "order by ascending laravel query"

PHP
9

order By Asc in laravbel

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

laravel order by raw

$orders = DB::table('orders')
                ->orderByRaw('updated_at - created_at DESC')
                ->get();
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language