command('LogExpireDelete')->dailyAt('00:01'); $schedule->command('InventoryDailyLoggingOwner')->dailyAt('08:00'); $schedule->command('FluxOrderFix')->hourlyAt(1); // $schedule->command('FluxOrderFix')->cron('* * * * *'); $schedule->command('WASSyncWMSOrderInformation')->everyMinute(); $schedule->command('syncLogCacheTask')->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }