command('xboard:statistics')->dailyAt('0:10'); // check $schedule->command('check:order')->everyMinute(); $schedule->command('check:commission')->everyMinute(); $schedule->command('check:ticket')->everyMinute(); // reset $schedule->command('reset:traffic')->daily(); $schedule->command('reset:log')->daily(); // send $schedule->command('send:remindMail')->dailyAt('11:30'); // horizon metrics $schedule->command('horizon:snapshot')->everyFiveMinutes(); // backup Timing if(env('ENABLE_AUTO_BACKUP_AND_UPDATE', false)){ $schedule->command('backup:database',['true'])->daily(); } } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }