8889841ccommand('reminder:update-date')->everyFiveMinutes(); $schedule->command('hello:test')->everyMinute(); $schedule->command('tasks:create-monthly') ->monthlyOn(1, '00:00') ->withoutOverlapping(); $schedule->command('kpi:update')->dailyAt('00:00'); } /* * * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1 crontab -e */ /** * Register the commands for the application. * * @return void */ protected $commands = [ \App\Console\Commands\TestCommand::class, Commands\ServiceMonthlyTasks::class, ]; protected function commands() {} }