Answers for "sortby price in laravel"

PHP
9

order By Asc in laravbel

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

sort laravel eloquent

$posts = Post::orderBy('id', 'DESC')->get();
Posted by: Guest on August-20-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