The command "icons:cache" does not exist.
If I run the command through the artisan facade, I get that error
Artisan::call('icons:cache');
Solution:Jump to solution
Yes, this is exactly it. From the blade-ui package serviceprovider:
```php
private function bootCommands(): void
{
if ($this->app->runningInConsole()) {...
3 Replies