PHPackages                             ajit3790/laravel-queue - 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. ajit3790/laravel-queue

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

ajit3790/laravel-queue
======================

Laravel Job Status Queue Manager

08PHP

Since Nov 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/ajit3790/laravel-queue)[ Packagist](https://packagist.org/packages/ajit3790/laravel-queue)[ RSS](/packages/ajit3790-laravel-queue/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Job Status And Queue Master
===================================

[](#laravel-job-status-and-queue-master)

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)

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

[](#requirements)

- PHP &gt;= 5.6.4
- Laravel &gt;= 5.3

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

[](#installation)

This plugin can only be installed from [Composer](https://getcomposer.org/).

Run the following command:

```
composer require ajit3790/laravel-queue

```

### Laravel 5.5

[](#laravel-55)

Just run the migration script. You don't have to do anything else, this package autoloads the Service Provider, using the new Auto-Discovery feature.

```
php artisan migrate
```

### Laravel 5.4 or lower

[](#laravel-54-or-lower)

Add the following to your `config/app.php`:

```
'providers' => [
    ...
    Platform\JobStatusMaster\JobStatusServiceProvider::class,
]
```

And run:

```
php artisan migrate
```

### Usage

[](#usage)

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

```
