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

I think your issue is that you're calling orderBy() in an incorrect way. You can use orderBy() to sort table information you get from a DB query. If you check out the Laravel Docs you will see you use orderBy() as such:

$users = DB::table('users')
                    ->orderBy('name', 'desc')
                    ->groupBy('count')
                    ->having('count', '>', 100)
                    ->get();
Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

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.