command('inspire')->hourly(); $schedule->command('telescope:clear')->daily(); $schedule->command('check:vihaar')->hourly(); $schedule->command('download:new-app')->twiceDaily(9, 20); $schedule->command('generate:memberid')->sundays()->at('10:00'); // $schedule->command('generate:memberid')->everyFiveMinutes(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }