PHPackages                             sudomabider/laravel-xeditable - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. sudomabider/laravel-xeditable

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

sudomabider/laravel-xeditable
=============================

x-editable integration with Laravel

0.1(9y ago)2244MITPHP

Since Jan 9Pushed 9y ago1 watchersCompare

[ Source](https://github.com/sudomabider/laravel-xeditable)[ Packagist](https://packagist.org/packages/sudomabider/laravel-xeditable)[ RSS](/packages/sudomabider-laravel-xeditable/feed)WikiDiscussions master Synced today

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

A simple package to make xeditable easier to use within Laravel.
----------------------------------------------------------------

[](#a-simple-package-to-make-xeditable-easier-to-use-within-laravel)

### Installation

[](#installation)

```
composer require sudomabider/laravel-xeditable

```

That's it.

### Instructions

[](#instructions)

- Have your x-editable based requests extend `Sudomabider\LaravelXEditable\XEditableRequest`. This class will first validate the initial request to make sure it's a valid x-editable request, and then rearrange the request parameters into a normal form request, e.g. from `{name: 'gender', value: 'male'}` into `{gender: 'male'}`
- You may restrict the names allowed from a request

    ```
    protected function allowedEditableNames()
    {
        return ['name', 'gender', 'email'];
    }
    ```

    This is particularly useful when multiple x-editable requests are grouped into a single class.
- Define validation rules as you would in a normal form request:

    ```
    public function rules()
    {
        return [
            'email' => 'required|email'
        ];
    }
    ```

    You may want to return different rules depending on which parameter is present:

    ```
    public function rules()
    {
        if ($this->exists('email')) {
            return [
                'email' => 'required|email'
            ];
        }

        if ($this->exists('name')) {
            return [
                'name' => 'required|min:3'
            ];
        }
    }
    ```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

3459d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4270905?v=4)[Veo Chen](/maintainers/sudomabider)[@sudomabider](https://github.com/sudomabider)

---

Tags

laravelxeditable

### Embed Badge

![Health badge](/badges/sudomabider-laravel-xeditable/health.svg)

```
[![Health](https://phpackages.com/badges/sudomabider-laravel-xeditable/health.svg)](https://phpackages.com/packages/sudomabider-laravel-xeditable)
```

###  Alternatives

[yajra/laravel-datatables-oracle

jQuery DataTables API for Laravel

4.9k35.3M364](/packages/yajra-laravel-datatables-oracle)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[zidbih/laravel-deadlock

Make temporary Laravel workarounds expire and fail CI when ignored.

984.0k](/packages/zidbih-laravel-deadlock)[erlandmuchasaj/laravel-gzip

Gzip your responses.

40140.4k2](/packages/erlandmuchasaj-laravel-gzip)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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