Quantcast
Channel: Artisan: "Command not found" - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by EliuX for Artisan: "Command not found"

$
0
0

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.     *     * @var array     */    protected $commands = [        Commands\MyCustomCommand::class,    ];    /**     * Define the application's command schedule.     *     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule     * @return void     */    protected function schedule(Schedule $schedule)    {        // $schedule->command('inspire')        //          ->hourly();    }}

Here i added MyCustomCommand as a valid artisan command. Check it is among available commands executing:

php artisan list

Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>