ordering
#363
Replies: 2 comments 3 replies
-
From the Laravel docs https://laravel.com/docs/9.x/localization#determining-the-current-locale ` $locale = App::currentLocale(); |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hello @keizah7, $queryData = $query->get(); // or Model::get();
$collectionSorted = $queryData->sortBy(function($item, $key){
return $item->attribute_title;
});
$sorted = $collectionSorted->values(); I hope it can help you. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How I can order by translatable column using eloquent without harcoding locale?
Beta Was this translation helpful? Give feedback.
All reactions