command('inspire')->hourly(); // $schedule->command('inspire') // ->everyMinute() // ->appendOutputTo(storage_path('logs/inspire.log')); $schedule->command('state:dataset'); //->appendOutputTo(storage_path('logs/inspire.log')); //->everyThirtyMinutes(); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); } }