PHPackages                             php-nl/laravel-payload-editor - 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. php-nl/laravel-payload-editor

ActiveLibrary

php-nl/laravel-payload-editor
=============================

Laravel Payload Editor

v1.0.2(1mo ago)04↑2900%MITPHPPHP ^8.3.0CI passing

Since Mar 24Pushed 1mo agoCompare

[ Source](https://github.com/Php-nl/laravel-payload-editor)[ Packagist](https://packagist.org/packages/php-nl/laravel-payload-editor)[ RSS](/packages/php-nl-laravel-payload-editor/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (7)Versions (4)Used By (0)

Laravel Payload Editor &amp; Payload Editor
===========================================

[](#laravel-payload-editor--payload-editor)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ddd636a8567cbe606d2bbf4e6e27acd8fffff8ee121e772342749bcb264c175f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7068702d6e6c2f6c61726176656c2d7061796c6f61642d656469746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/php-nl/laravel-payload-editor)[![GitHub Tests Action Status](https://camo.githubusercontent.com/3ab6e4044e4c417e2923c31906af05603ac86d052bdccf9fa06f2795d17b69e9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7068702d6e6c2f6c61726176656c2d7061796c6f61642d656469746f722f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/php-nl/laravel-payload-editor/actions)[![Total Downloads](https://camo.githubusercontent.com/0420b3667fdbeb22dcad7a2dc0c0b7cc109db7bd8be7fe2e63973a36c4946963/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7068702d6e6c2f6c61726176656c2d7061796c6f61642d656469746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/php-nl/laravel-payload-editor)

Every Laravel developer has been there: A queued job fails because of a silly typo in the payload (like a misspelled email address or an expired third-party ID). You can view the exception and the failed payload in Horizon, but you can only hit "Retry". If the payload is wrong, retrying won't help.

**Laravel Payload Editor** solves this by providing a beautiful UI to unserialize the failed job, safely edit the primitive properties and Eloquent Model Identifiers, and requeue the job with the updated payload.

Features
--------

[](#features)

- **Safe Editing:** Unserializes PHP queue objects, reads their properties via Reflection, and ensures type-safety (integers remain integers, booleans remain booleans).
- **Eloquent Support:** Safely edit the `id` of an `Illuminate\Contracts\Database\ModelIdentifier` inside the job so you can point the job to the correct database record without manual DB queries.
- **Beautiful UI:** Built with Livewire 3 and Tailwind CSS, inspired by Laravel Horizon and Pulse.
- **Horizon &amp; Database Supported:** Works out of the box with the default Laravel `failed_jobs` database connection.

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

[](#installation)

You can install the package via composer:

```
composer require php-nl/laravel-payload-editor
```

Next, publish the configuration file (optional):

```
php artisan vendor:publish --tag="laravel-payload-editor-config"
```

Usage
-----

[](#usage)

Simply visit `/laravel-payload-editor` in your local development environment to access the dashboard.

### Security in Production

[](#security-in-production)

By default, the dashboard is only accessible in the `local` environment. For production usage, you must define the `viewLaravelPayloadEditor` gate in your `App\Providers\AppServiceProvider` or `AuthServiceProvider`.

```
use Illuminate\Support\Facades\Gate;

/**
 * Register any authentication / authorization services.
 */
public function boot(): void
{
    Gate::define('viewLaravelPayloadEditor', function ($user) {
        return in_array($user->email, [
            'admin@yourdomain.com',
        ]);
    });
}
```

Testing
-------

[](#testing)

```
composer test
```

Credits
-------

[](#credits)

- [PHP.nl](https://php.nl)
- [Serff Webdevelopment](https://serff-webdevelopment.nl)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

42

—

FairBetter than 89% of packages

Maintenance98

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

46d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a312a14822b84080fe3fe8b6db51d324499900f08ffbc39eed4b2f0bf33c02b0?d=identicon)[SERFF](/maintainers/SERFF)

---

Top Contributors

[![SERFF](https://avatars.githubusercontent.com/u/588086?v=4)](https://github.com/SERFF "SERFF (10 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/php-nl-laravel-payload-editor/health.svg)

```
[![Health](https://phpackages.com/badges/php-nl-laravel-payload-editor/health.svg)](https://phpackages.com/packages/php-nl-laravel-payload-editor)
```

###  Alternatives

[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

703141.0k7](/packages/tallstackui-tallstackui)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)[joelwmale/livewire-quill

Easily add QuillJS with image support to any Laravel Livewire component.

1314.0k](/packages/joelwmale-livewire-quill)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

116.6k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
