This Laravel package provides a command that tells you what the scheduler would do at a given moment in time.
In some applications, the schedule can quickly grow to dozens of scheduled commands, making it harder and harder to see what the Scheduler will do a give moment in time.
This command will help you to see what the Scheduler will or will not do so that you can stop guessing.
This package requires PHP 7.2 and Laravel 5.5 or higher.
Install via Composer
$ composer require arondeparon/laravel-schedule-when
# To see what would run right now
php artisan schedule:when
# To see what will run at a given moment
php artisan schedule:when "2019-01-01 08:05"
$ composer test
MIT license. Please see the license file for more information.