1

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?

T. Gawęda
  • 15,706
  • 4
  • 46
  • 61
prgrm
  • 3,734
  • 14
  • 40
  • 80

1 Answers1

1

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.

jeanj
  • 2,106
  • 13
  • 22