command('horizon:snapshot')->everyFiveMinutes(); //Test rung to help figure out what is going on. $schedule->command('inspire')->everyMinute(); /** * Purge Data Schedule */ $schedule->command('data:PurgeUsers') ->dailyAt('23:00'); /** * Finances Update Schedule */ $schedule->command('finances:UpdateJournals') ->hourlyAt('45') ->withoutOverlapping(); /** * Item Update Schedule */ $schedule->command('services:ItemPriceUpdate') ->hourlyAt('30'); /** * Mining Tax Schedule */ $schedule->command('MiningTax:Observers') ->dailyAt('22:00'); $schedule->command('MiningTax:Ledgers') ->dailyAt('20:00'); $schedule->command('MiningTax:Invoices') ->weeklyOn(1, '6:00'); $schedule->command('MiningTax:Payments') ->hourlyAt('15'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }