Answers for "laravel sortby call back"

PHP
1

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

get all sort by laravel

$results = Project::orderBy('name')->get();
Posted by: Guest on August-20-2020

Browse Popular Code Answers by Language