Error while creating a new user

Hi! This is my first time using filament, and I love the experience so far. I just ran into an issue while trying to 'deploy' my project to a server. I can't seem to create a user after deploying it. Locally I've got no issues at all, installed filament and can run the artisan make:filament-user command. But after deploying I'm seeing the following in red: Filament has not been installed yet: php artisan filament:install --panels. I already have filament installed, and also tried running the suggested command without luck. Any suggestions?
2 Replies
LeandroFerreira
LeandroFerreira15mo ago
GitHub
Can't create a filament user · filamentphp filament · Discussion #1...
Hello! I'm having trouble creating a user after deploying my project. Locally I've got no issues at all, installed filament and can run the artisan make:filament-user command. But after dep...
DrByte
DrByte15mo ago
php artisan make:filament-user Filament has not been installed yet: php artisan filament:install --panels
This will occur if you have no panels with ->default() set. This is included when Filament creates the first panel for your app. But if you removed that, or if you created your own panel without the artisan command, then you will encounter that error when creating a user from the artisan command

Did you find this page helpful?