How to set a language for Filament?

I want to have French for normal Laravel frontend and then English for admin which is in Filament.

In app.php I have set locale to French but French is then also in Filament.

How to set up English for Filament admin? Because right now everything is in French, including Filament admin.
Solution
I would probably make a middleware that checks if it's a filament route then do app()->setLocale('en') to force it.
Was this page helpful?