protected $commands = [
Commands\FetchAndStore::class,
Commands\FeatchAndSrore2::class
];
protected function schedule(Schedule $schedule)
{
$schedule->command('command:FetchAndStore')
->everyMinute();
$schedule->command('command:FeatchAndSrore2')
->everyMinute();
}
here is my code I ran this command PHP artisan schedule:run
need a solution for local server as well as VPS server