repat/laravel-job-models

Eloquent Models for the tables job and job_fails as created by artisan queue:table and queue:failed-table
28,851 8
Install
composer require repat/laravel-job-models
Latest Version:0.11
PHP:>=5.6
License:MIT
Last Updated:Jun 22, 2026
Links: GitHub  ·  Packagist
Maintainer: repat

laravel-job-models

Latest Version on Packagist Total Downloads

laravel-job-models contains 2 Eloquent models for the tables jobs and job_fails (or however they're defined in the queue.php config file) as created by the 2 artisan commands queue:table and queue:failed-table.

Installation

$ composer require repat/laravel-job-models

Documentation

Casting

There is a casting to \Carbon\Carbon objects for: reserved_at, available_at, created_at and failed_at and a casting to array for payload.

Attributes/ Mutators

There are getters for all the keys of the payload, including the data array. For more information, see the Laravel Documentation on Eloquent Mutators.

$job = \Repat\LaravelJobs\Job::first();

$job->display_name;
$job->max_tries;
$job->delay;
$job->timeout;
$job->timeout_at; // cast to Carbon if not null
$job->command_name; // ->payload['data']['commandName']
$job->command; // unserialized

License

Version

  • Version 0.9

Contact

repat

Flattr this git repo

Related Packages

repat/laravel-password-reset-model

Eloquent Model for the password_resets table

9,260 1
repat/laravel-migration-model

Eloquent Model for the migrations table

4,079 1
rjacobsen/eloquent-model-generator

Auto-generates all Eloquent models from the database in a Laravel 5 project.

3,016 8
repat/laravel-database-session-model

Eloquent Model for the sessions table as created by artisan session:table

11,528 1
shiftonelabs/laravel-cascade-deletes

Adds application level cascading deletes to Eloquent Models.

829,037 165