command('anonaddy:reset-bandwidth')->monthlyOn(1, '00:00'); $schedule->command('anonaddy:email-users-with-token-expiring-soon')->dailyAt('12:00'); $schedule->command('anonaddy:check-domains-sending-verification')->daily(); $schedule->command('anonaddy:check-domains-mx-validation')->daily(); $schedule->command('anonaddy:clear-failed-deliveries')->daily(); $schedule->command('anonaddy:clear-postfix-queue-ids')->hourly(); $schedule->command('auth:clear-resets')->daily(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }