Run artisan commands on specific environments

Take control of your Laravel scheduled commands. Run them on specific environments for ultimate flexibility.

$schedule->command('reports:send')
->daily()
->environments(['production', 'staging']);

Tip given by @LaraShout

Recent New Courses