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(2mo ago)2150↓50%1MITPHPPHP ^8.2CI passing

Since Mar 2Pushed 2mo 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 1mo ago

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

42

—

FairBetter than 90% of packages

Maintenance86

Actively maintained with recent releases

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

68d ago

Major Versions

1.0.0 → 5.x-dev2026-03-02

### Community

Maintainers

![](https://www.gravatar.com/avatar/a8653364c380002342c0150055f0b45fad66658c1f3e78afb30f79173b801f0c?d=identicon)[MuhammadKazimSadiq](/maintainers/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

[a909m/filament-statefusion

Filament StateFusion is a powerful FilamentPHP plugin that seamlessly integrates Spatie Laravel Model States into the Filament admin panel. This package provides an intuitive way to manage model states, transitions, and filtering within Filament, enhancing the user experience and developer productivity.

3010.8k1](/packages/a909m-filament-statefusion)[inerba/filament-db-config

A Filament plugin for database-backed application settings and editable content, with caching and easy page generation.

329.1k](/packages/inerba-filament-db-config)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

303.2k](/packages/caresome-filament-neobrutalism-theme)[mradder/filament-logger

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

141.1k](/packages/mradder-filament-logger)[resma/filament-awin-theme

A modern, responsive, and customizable theme for FilamentPHP, designed to elevate your admin panel with a sleek interface and seamless user experience.

1714.6k](/packages/resma-filament-awin-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)

PHPackages © 2026

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