Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Daniel-Pablo's avatar

install nova and filament

Hi team, look I am working in a dev that already got nova, I am trying to install filament to start migrating the stuff to the new admin but I can't make it install, I mean I do composer require filament/filament and it makes like the installation but then I shot the PHP artisan make user But Got nothing also go to localhost/admin and there is no admin, how I can setup this? Thanks in advance

this command

php artisan make:filament-user; = give this error - Command "make:filament-user" is not defined. 

Did you mean one of these? and then I got the the long list of PHP artisan make...

0 likes
2 replies
Daniel-Pablo's avatar
Daniel-Pablo
OP
Best Answer
Level 12

for someone that runs the same error remove this pack

"blade-ui-kit/blade-heroicons": "^2.0",

this is not compatible with filament/forms so remove it and again composer require filament

that solves my issue

1 like
Daniel-Pablo's avatar

For someone that wants to use the HEROICONS but can't install the pack, you must call the icons this way

// inside the laravel blade file you should call the icon like this
{{ svg('heroicon-s-check-circle', "w-6 h-6 float-left") }}

The filament pack already contains the HEROICONS pack that's why It can be called that way this solution was given by AWCodes inside Filament Server inside Discord Community and actually works! I tested and it's working on my end, Thanks AWcodes

Please or to participate in this conversation.