Skip to content

A command to output your current laravel schedule in a human readable format.

License

Notifications You must be signed in to change notification settings

lxlang/laravel-schedule-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Schedule Info

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();

About

A command to output your current laravel schedule in a human readable format.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages