PHPackages                             ofthewildfire/filament-inline-edit-column - 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. ofthewildfire/filament-inline-edit-column

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

ofthewildfire/filament-inline-edit-column
=========================================

Click-to-edit columns for Filament with automatic custom fields integration

v1.1.20(5mo ago)049MITPHPPHP ^8.1

Since Nov 4Pushed 5mo agoCompare

[ Source](https://github.com/ofthewildfire/InlineEditorPlugin)[ Packagist](https://packagist.org/packages/ofthewildfire/filament-inline-edit-column)[ RSS](/packages/ofthewildfire-filament-inline-edit-column/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (53)Used By (0)

InlineEditColumn Usage Guide
============================

[](#inlineeditcolumn-usage-guide)

Quick Start
-----------

[](#quick-start)

Replace any `TextColumn` with `InlineEditColumn` for instant click-to-edit functionality.

```
use OfTheWildfire\FilamentInlineEditColumn\Filament\Table\Columns\InlineEditColumn;

// Before
TextColumn::make('name'),

// After
InlineEditColumn::make('name'),
```

How it works
------------

[](#how-it-works)

- **Click** any cell to start editing
- **Enter** to save your changes
- **Escape** or **✖** to cancel

Examples
--------

[](#examples)

```
public static function table(Table $table): Table
{
    return $table->columns([
        // Basic text editing
        InlineEditColumn::make('name'),

        // Email field
        InlineEditColumn::make('email')->type('email'),

        // Numbers
        InlineEditColumn::make('price')->type('number'),

        // With all the usual Filament options
        InlineEditColumn::make('title')
            ->searchable()
            ->sortable()
            ->toggleable(),
    ]);
}
```

Input Types
-----------

[](#input-types)

Set the input type with `->type()`:

- `text` (default)
- `email`
- `number`
- `url`
- `tel`
- `password`

That's it!
----------

[](#thats-it)

Works with all standard Filament column features like sorting, searching, and toggling. The data saves automatically to your database when you press Enter.

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance70

Regular maintenance activity

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

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

51

Last Release

167d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/61b8f1746bf2f663adcf0f13600c20aa381bad7c35a1c1c5e4ab6b2e14d1a19b?d=identicon)[ofthewildfire](/maintainers/ofthewildfire)

---

Top Contributors

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

---

Tags

laraveltablefilamentcolumninline edit

### Embed Badge

![Health badge](/badges/ofthewildfire-filament-inline-edit-column/health.svg)

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

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[defstudio/filament-searchable-input

A searchable autocomplete input for Filament forms

3212.4k](/packages/defstudio-filament-searchable-input)

PHPackages © 2026

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