command('detect:refill')->everyThirtyMinutes(); // $schedule->command('invoice:generate-monthly')->monthlyOn(1, '01:00'); // Tiap tanggal 1 jam 1 pagi // $schedule->command('invoice:generate-monthly')->everyMinute(); // yang ini untuk testing, jadi tiap menit } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }