Filament panel labels won't show up
Hi, I followed this guide: https://filamentphp.com/docs/3.x/panels/installation
And the result is the screenshot, for some reason it can't render labels.
My composer.json is:
6 Replies
Yes my current language is the default for laravel
'locale' => env('APP_LOCALE', 'en'), 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
php artisan filament:upgrade && php artisan config:cache && php artisan cache:clear && php artisan serve
doesn't solve it too'fallback_locale' => 'en'
?
yep
APP_FALLBACK_LOCALE=us
at .envYou really shouldn’t change your fallback locale.
Solution
us !== en
omg @Dan Harrin it was that
thank you!