filament-language-switch icon indicating copy to clipboard operation
filament-language-switch copied to clipboard

A versatile and user-friendly plugin designed for Filament Panels.

Results 11 filament-language-switch issues
Sort by recently updated
recently updated
newest added

Currently the panel switcher on authentication pages only works in the top left. Updating the `w-fit` class to `w-full` fixes this behavior.

I have noticed that when i insert the language switch it breaks my text inputs css. looking into the css i see that for some reason there are also css...

I am opening this here as the question link redirects me to a 404 page for some reason. Is there a way to place the switch inside the user's menu...

partial fix for #90 **Another problem:** If I use `Placement::TopRight` then the noti/account and lang-swith are place on top of each other (only on profile page) like this image ![Screenshot...

This is my code inside `AppServiceProvider` ```php public function boot(): void { LanguageSwitch::configureUsing(function (LanguageSwitch $switch) { $switch ->locales(['en', 'zh_CN']) ->visible(outsidePanels: true) ->outsidePanelPlacement(Placement::TopCenter); }); } ``` And this is the result....

Added a very useful link :)

Two simple enhancements would be desirable. The language switcher [retrieves information](https://github.com/bezhanSalleh/filament-language-switch/blob/e4674eed43ac460ca40ecdd6cfe9e1d7275267e4/src/LanguageSwitch.php#L261) from the query tag `locale`, with the browser request as fallback. 1. Instead of only offering the query tag...

Since 404 routes return `null` this breaks calling `getName()`. Adding `?` fixes this