↧
Answer by EliuX for Artisan: "Command not found"
Go to app/Console/Kernel.php and add the class to the commands variable. It would look something like:class Kernel extends ConsoleKernel{ /** * The Artisan commands provided by your application. * *...
View ArticleAnswer by Hassan for Artisan: "Command not found"
It looks as though the problem is related to your setup. You're using PHP CGI instead of CLI to run your commands which will not work.Ensure that the code is there on your live environment and run your...
View ArticleArtisan: "Command not found"
So I try to add a Command withphp artisan command:make MailSendCommandThe file MailSendCommand.php is created.I edited it to this:class MailSendCommand extends Command { protected $name =...
View Article