command('services:CorpJournal') ->hourly() ->withoutOverlapping(); $schedule->command('services:HoldingJournal') ->hourly() ->withoutOverlapping(); $schedule->command('services:UpdateMoonPrice') ->hourly() ->withoutOverlapping(); $schedule->command('services:GetCorps') ->monthlyOn(1, '09:00') ->withoutOverlapping(); $schedule->command('services:CalculateMarketTax') ->monthlyOn(1, '08:00') ->withoutOverlapping(); $schedule->command('services:MoonMailer') ->monthlyOn(1, '00:01') ->withoutOverlapping(); $schedule->command('services:PiTransactions') ->hourly() ->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }