command('inspire')->hourly(); $schedule->command('subscription:update')->twiceDaily(1, 13); // Run the task daily at 1:00 & 13:00 // $schedule->call(function (){ // dd('ok'); // info('run cronjob'); // })->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }