spa-laravel-vuejs icon indicating copy to clipboard operation
spa-laravel-vuejs copied to clipboard

Sorting related model

Open t0n1zz opened this issue 7 years ago • 0 comments

so i find your sorting code not working if we are sorting related model and i find elsewhere the solution is doing something like this

$users = App\User::with(['posts' => function ($query) {
    $query->orderBy('created_at', 'desc');
}])->get();

but i don't know how to add that into FilterPaginateOrder trait so it will also work with related model sorting... can you help me please?

t0n1zz avatar Mar 22 '18 17:03 t0n1zz