command('increment-drug-report')->everyThirtyMinutes(); $schedule->command('increment-drug-report-ass')->everyThirtyMinutes(); $schedule->command('update-drug-report-ass')->everyThreeHours(15); //$schedule->command('drug-report-history')->everyThirtyMinutes(); //$schedule->command('drug-report-signed')->everyThirtyMinutes(); } /** * Register the commands for the application. * * @return void */ protected function commands() { // 自动引入任务命令 $this->load(__DIR__.'/Commands'); // 引入任务路由 require base_path('routes/console.php'); } }