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