command('inspire')->hourly(); $schedule->command('backup:clean')->daily()->at('02:00'); $schedule->command('backup:run')->daily()->at('07:00'); $schedule->command('order:gmupdate')->everyTenMinutes(); $schedule->command('product:gmupdate')->daily()->at('02:00'); $schedule->command('product:used:gmupdate')->daily()->at('04:30'); //$schedule->command('product:updateqta')->hourly()->between('8:00', '00:00')->withoutOverlapping(); $schedule->command('product:updateqta')->everyFiveMinutes()->between('8:00', '00:00')->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }