command('inspire')->hourly(); $schedule->command('order-items:create-daily')->everyMinute(); //自动扣款 $schedule->call(function () { (new OrderItems())->autoCheckout(true); })->everyMinute() ->timezone('Asia/Shanghai') ->between('00:00', '21:59'); //自动退款 $schedule->call(function () { (new Refund())->autoRefund(); })->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }