set language for eloquent alphabetic orderBy

Viewed 789

I want to sort an alphabetical column and using the orderBy method in Laravel eloquent.

like below:

Post::where("some conditions")->orderBy('name','desc')->get();

I'm working with the Persian language and the result seems to use the Arabic alphabet.

I want to change this default alphabet only. can eloquent and MySql handle this at all?

1 Answers
Related