Support the ongoing development of Laravel.io →
Database Eloquent
Last updated 1 year ago.
0

Can u try in your controller

$cars = Car::all()->orderBy('sort_order', 'asc')->get();
Last updated 1 year ago.
0
Solution

for car.php model

public function scopeMyOrder($query)
{
    return $query->orderBy('sort_order', 'asc');
}

and call this to CarsController.php

$cars = Car::myOrder()->get();
Last updated 1 year ago.
0

Thank you Mr. say! That worked great. scope is exactly the solution I need.

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

neon5 neon5 Joined 21 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.