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();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community