command('inspire')->hourly(); $schedule->command('app:verify-need-pay-continue')->dailyAt('00:01');//更新续费列表 $schedule->command('app:verify-need-pay-arrear')->dailyAt('01:01');//更新欠费状态 } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }