command('staff_relation')->runInBackground(); $schedule->command('staff_remark')->runInBackground(); $schedule->command('tag_relation')->runInBackground(); // 产品限购自动下架 $schedule->command('product_delist')->everyMinute(); //拼团活动 $schedule->command('regiment')->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { // 自动引入任务命令 $this->load(__DIR__.'/Commands'); // 引入任务路由 require base_path('routes/console.php'); } }