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