So, I'm trying to install Voyager for my laravel, but when I insert
php artisan voyager: install
I get this error message:
(Symfony \ Component \ Console \ Exception \ CommandNotFoundException] There are not commands defined in the "voyager" namespace)
Here is my version of PhP and Laravel:
Laravel Framework version 5.3.16
Ξ» php -v PHP 7.0.13 (cli) (built: Nov 8, 2016 1:45:28 p.m.) (ZTS) Copyright (c) 1997-2016 PHP Group Zend Engine v3.0.0, copyright (c) 1998-2016 . Zend technologies
And my service provider providers:
/ * * Package service providers ... * /
TCG\Voyager\VoyagerServiceProvider::class, Intervention\Image\ImageServiceProvider::class,
So what is the problem? why am i getting this error message
source share