PHPackages                             cryental/laravel-job-status - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. cryental/laravel-job-status

ActiveLibrary[Queues &amp; Workers](/categories/queues)

cryental/laravel-job-status
===========================

Laravel Job Status

1.8.0(2y ago)2164MITPHPPHP &gt;=7.1

Since May 4Pushed 2y agoCompare

[ Source](https://github.com/Cryental/laravel-job-status)[ Packagist](https://packagist.org/packages/cryental/laravel-job-status)[ RSS](/packages/cryental-laravel-job-status/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (9)Versions (2)Used By (0)

Laravel Job Status
==================

[](#laravel-job-status)

This repo is the several critical error fixed version of original repo.

[![Latest Stable Version](https://camo.githubusercontent.com/5d6dffba183e67ec67f4f632b0b8a55e7b7d59f17fc2245b5d0d773ec9812166/68747470733a2f2f706f7365722e707567782e6f72672f696d5469676765722f6c61726176656c2d6a6f622d7374617475732f762f737461626c65)](https://packagist.org/packages/imTigger/laravel-job-status)[![Total Downloads](https://camo.githubusercontent.com/69838bf039ee916e0949e0085a8abd6027ff219cad2ec662668fa2d3f2174294/68747470733a2f2f706f7365722e707567782e6f72672f696d5469676765722f6c61726176656c2d6a6f622d7374617475732f646f776e6c6f616473)](https://packagist.org/packages/imTigger/laravel-job-status)[![Build Status](https://camo.githubusercontent.com/6e10cfab8f7a0809d5735e312f7d08aeedce6e4c458f64305de120ad08d7a5e6/68747470733a2f2f7472617669732d63692e6f72672f696d5469676765722f6c61726176656c2d6a6f622d7374617475732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/imTigger/laravel-job-status)[![License](https://camo.githubusercontent.com/3a64d9fc489b0650658d0f0f6c4bbeef50a07cade26587643925423c95436312/68747470733a2f2f706f7365722e707567782e6f72672f696d5469676765722f6c61726176656c2d6a6f622d7374617475732f6c6963656e7365)](https://packagist.org/packages/imTigger/laravel-job-status)

Laravel package to add ability to track `Job` progress, status and result dispatched to `Queue`.

- Queue name, attempts, status and created/updated/started/finished timestamp.
- Progress update, with arbitrary current/max value and percentage auto calculated
- Handles failed job with exception message
- Custom input/output
- Native Eloquent model `JobStatus`
- Support all drivers included in Laravel (null/sync/database/beanstalkd/redis/sqs)
- This package intentionally do not provide any UI for displaying Job progress.

    If you have such need, please refer to [laravel-job-status-progress-view](https://github.com/imTigger/laravel-job-status-progress-view)

    or make your own implementation using `JobStatus` model

Requirements
------------

[](#requirements)

- PHP &gt;= 7.1
- Laravel/Lumen &gt;= 5.5

Installation
------------

[](#installation)

[Installation for Laravel](INSTALL.md)

[Installation for Lumen](INSTALL_LUMEN.md)

### Usage

[](#usage)

In your `Job`, use `Trackable` trait and call `$this->prepareStatus()` in constructor.

```
