lxlang / laravel-schedule-info
A command to output your current laravel schedule in a human readable format.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lxlang/laravel-schedule-info
Requires
- php: >=7.4
- dragonmantank/cron-expression: ^2.0
- illuminate/console: ^5.5|^6|^7
- illuminate/support: ^5.5|^6|^7
- lorisleiva/cron-translator: ^0.1.1
Requires (Dev)
- illuminate/container: ^7.19
- phpunit/phpunit: ^9.2
- squizlabs/php_codesniffer: ^3
This package is auto-updated.
Last update: 2025-10-09 21:32:21 UTC
README
Description
A command to output your current laravel schedule in a human readable format.
Installation
composer require lxlang/laravel-schedule-info
Usage
Run ./artisan schedule:info
+------------+-------------------------+----------------------+-------------------+
| expression | command | when | next_due |
+------------+-------------------------+----------------------+-------------------+
| 0 0 * * * | inspire | Every day at 12:00am | 9 hours from now |
+------------+-------------------------+----------------------+-------------------+
Code-Access
You can use ScheduleInfoReport
to generate a result set, with which a custom view can be generated to include this
into views or other reports.
$report = app(ScheduleInfoReport::class); /** @var Collection|ScheduleInfo[] $result */ $result = $report->generate();