Table with Bulk Edit Modal v4

Filament 4/5
Also available in Filament 3 version

Bulk operation on a few table rows, performing multi-update of a column value in a modal form.

FilamentExamples ThumbBase (4)

Get the Source Code:

Only This Example

$9

One-time payment

Full source code for Table with Bulk Edit Modal v4
Downloadable ZIP file with the source code
Lifetime access to this example
GitHub Sign in with GitHub to buy

Sign in first, then complete your $9 checkout.

Best value — all 169 examples

FilamentExamples Membership

$99 /year
or
$199 lifetime
Access to code of all 169 examples
Future new examples and updates included
FilaCheck Pro package licence included
MCP server included
View membership plans

30-day money-back guarantee

How it works

We add a new Bulk Action where adding a schema() opens a modal with a form.

In the form, we select data.

The action accepts a collection of selected records and an array of data from the form as parameters.

For each record, we update the corresponding data and deselect records.

Here is what the action itself looks like:

app/Filament/Resources/Posts/Tables/PostsTable.php:

BulkAction::make('Change author')
->icon(Heroicon::OutlinedPencilSquare)
->schema([
Select::make('author_id')
->label('Author')
->relationship('author', 'name')
// ...
The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.