PHPackages                             muhammadkazimsadiq/filament-quick-edit - 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. [Admin Panels](/categories/admin)
4. /
5. muhammadkazimsadiq/filament-quick-edit

ActiveLibrary[Admin Panels](/categories/admin)

muhammadkazimsadiq/filament-quick-edit
======================================

Filament plugin to quick-edit/add table rows using modals and filtering form fields.

1.0.0(4mo ago)3234↓28.6%1MITPHPPHP ^8.2CI passing

Since Mar 2Pushed 4mo agoCompare

[ Source](https://github.com/MuhammadKazimSadiq/filament-quick-edit)[ Packagist](https://packagist.org/packages/muhammadkazimsadiq/filament-quick-edit)[ Docs](https://github.com/muhammadkazimsadiq/filament-quick-edit)[ GitHub Sponsors](https://github.com/MuhammadKazimSadiq)[ RSS](/packages/muhammadkazimsadiq-filament-quick-edit/feed)WikiDiscussions 5.x Synced today

READMEChangelogDependencies (9)Versions (2)Used By (0)

Filament Quick Edit
===================

[](#filament-quick-edit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7ead5868c10afdc7810a7d561367aa78260680e82a61db4f4c17d759738f11cf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d7568616d6d61646b617a696d73616469712f66696c616d656e742d717569636b2d656469742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/muhammadkazimsadiq/filament-quick-edit)[![Total Downloads](https://camo.githubusercontent.com/10556cc45505286e94a089d73253a04f1a4c989d8ee25b5f556b71a744fb61b3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d7568616d6d61646b617a696d73616469712f66696c616d656e742d717569636b2d656469742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/muhammadkazimsadiq/filament-quick-edit)

Filament plugin to help users quickly add or edit records using modals by dynamically filtering the actual resource form fields. Sometimes forms are very long; this plugin lets you take a subset of the fields for quick actions.

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

[](#installation)

You can install the package via composer:

```
composer require muhammadkazimsadiq/filament-quick-edit
```

You can publish the translation files using:

```
php artisan vendor:publish --tag="filament-quick-edit-translations"
```

Usage
-----

[](#usage)

You can use the `QuickAddAction` in your page headers or table header actions, and the `QuickEditAction` in your table row actions.

The plugin provides three dedicated modifier methods:

- `->selectFields(array $fields)`: Only keep the specified fields in the quick form.
- `->excludeFields(array $fields)`: Exclude the specified fields from the quick form.
- `->onlyRequiredFields(bool $condition = true)`: Automatically extract only the fields marked as required in the resource.

### Quick Edit Action

[](#quick-edit-action)

Use `QuickEditAction::make()` inside a Filament Table to quickly edit a record with limited fields:

```
use MuhammadKazimSadiq\FilamentQuickEdit\Actions\QuickEditAction;

public function table(Table $table): Table
{
    return $table
        ->columns([
            // ...
        ])
        ->actions([
            QuickEditAction::make()
                ->selectFields(['name', 'description']),

            // Or only required fields:
            // QuickEditAction::make()->onlyRequiredFields(),
        ]);
}
```

### Quick Add Action

[](#quick-add-action)

Use `QuickAddAction::make()` in a Filament Page header action or a Table header action to quickly add a new record using the modal:

```
use MuhammadKazimSadiq\FilamentQuickEdit\Actions\QuickAddAction;

protected function getHeaderActions(): array
{
    return [
        QuickAddAction::make()
            ->onlyRequiredFields()
            ->excludeFields(['status']),
    ];
}
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](.github/SECURITY.md) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Muhammad Kazim](https://github.com/MuhammadKazimSadiq)

License
-------

[](#license)

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

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance77

Regular maintenance activity

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

2

Last Release

124d ago

Major Versions

1.0.0 → 5.x-dev2026-03-02

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/37351104?v=4)[Muhammad Kazim](/maintainers/MuhammadKazimSadiq)[@MuhammadKazimSadiq](https://github.com/MuhammadKazimSadiq)

---

Top Contributors

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

---

Tags

laravelfilamentfilament-pluginfilamentphpMuhammadKazimSadiqfilament-quick-edit

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/muhammadkazimsadiq-filament-quick-edit/health.svg)

```
[![Health](https://phpackages.com/badges/muhammadkazimsadiq-filament-quick-edit/health.svg)](https://phpackages.com/packages/muhammadkazimsadiq-filament-quick-edit)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

2317.4k](/packages/mradder-filament-logger)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)

PHPackages © 2026

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