F
Filament2mo ago
PiGIon

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:
"require": {
"php": "^8.2",
"filament/filament": "^3.2",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.4"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1",
"spatie/laravel-ignition": "^2.4"
},
"require": {
"php": "^8.2",
"filament/filament": "^3.2",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.4"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1",
"spatie/laravel-ignition": "^2.4"
},
No description
Solution:
us !== en
Jump to solution
6 Replies
PiGIon
PiGIon2mo ago
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
LeandroFerreira
LeandroFerreira2mo ago
'fallback_locale' => 'en' ?
PiGIon
PiGIon2mo ago
config/app.php
83: 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
config/app.php
83: 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
yep APP_FALLBACK_LOCALE=us at .env
Dennis Koch
Dennis Koch2mo ago
You really shouldn’t change your fallback locale.
Solution
Dan Harrin
Dan Harrin2mo ago
us !== en
PiGIon
PiGIon2mo ago
omg @Dan Harrin it was that thank you!