Hi,
To use you command you need to first register your command in app/Console/Kernel.php
protected $commands = [
\App\Console\Commands\Instagram::class,
];
also the name of artisan command should not start from capital letter I think Instagram:fetch
then in your scheduler:
protected function schedule(Schedule $schedule)
{
$schedule->command('instagram:fetch')->timezone('Europe/Dublin')->daily();
}
Then you need to start at least one artisan worker on your forge machine
and also might be good idea to add this to your deployment script:
php artisan queue:restart
to make sure workers are working off you latest deployed code.