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
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