Reputation: 3833
I am trying to install Spark in Laravel using its own documentation. Everything has been installed fine, however when I get to the:
php artisan spark:install --force
part my command prompt simply won't work.
[Symfony\Component\Console\Exception\CommandNotFoundException]
There are no commands defined in the "spark" namespace.
Any ideas?
Upvotes: 1
Views: 591
Reputation: 2166
Run composer require laravel/spark
looks like you don't have it.
Then don't forget to add the service providers in you config/app.php
file and you should be good to run your command.
Upvotes: 1