Track the progress, status, and results of Laravel and Lumen queue jobs.
This Laravel/Lumen package lets you monitor the lifecycle of your queued jobs. It offers a `Trackable` trait to add to your jobs, allowing you to update progress with `$this->setProgressNow()` and store custom data using `$this->setOutput()`. All job status information gets persisted to a native `JobStatus` Eloquent model.
Track the progress, status, and results of Laravel and Lumen queue jobs.
Developers who need to show users the real-time progress of background tasks or internally monitor job execution will find this useful.