Answers for "laravel apply orderby() in collection"

PHP
1

laravel order by raw

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

laravel sort collection

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

Browse Popular Code Answers by Language