Right Click
CommunityAdd native-feeling right-click menus to Filament table rows. Trigger regular Filament actions for single records, or show a separate bulk menu when users right-click selected rows. Actions stay server-enforced, so modals, authorization, validation, redirects, and notifications still work through Filament.
Author:
Chris Jones
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
^8.2supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 8 days ago; last release 8 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Skipped: GitHub Actions pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Failed: Dependabot or Renovate configured — No dependency updater configuration found. View details on Plumb
- Skipped: Dependency update cooldown configured
- Failed: Provides a security policy — View details on Plumb
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
- Installation
- Usage
- Screenshot
- Behavior
- Static menu, server-enforced actions
- Asset loading
- Bulk actions
- Compatibility
- More Filament plugins by Leek
Right-click table row and Flowforge card menus for Filament panels.
This package adds a static right-click menu to Filament table records and, when Flowforge is installed, Kanban board cards. Menu items trigger native Filament actions, so action modals, confirmation, authorization, validation, notifications, redirects, and server-side disabled/hidden checks remain owned by Filament.
#Installation
composer require leek/filament-right-click
php artisan filament:assets
Register the plugin on the panels that should support right-click menus:
use Leek\FilamentRightClick\FilamentRightClickPlugin;
$panel
->plugin(FilamentRightClickPlugin::make());
#Usage
Use contextMenuActions() for single-record row menu items and contextMenuBulkActions() for selected-record menu items:
use Filament\Actions\Action;
use Filament\Actions\BulkAction;
use Filament\Actions\DeleteAction;
use Filament\Support\Icons\Heroicon;
use Filament\Tables\Table;
use Leek\FilamentRightClick\Menu\ContextMenuItem;
use Leek\FilamentRightClick\Menu\ContextMenuSection;
use Leek\FilamentRightClick\Menu\ContextMenuSeparator;
public static function table(Table $table): Table
{
return $table
->columns([
// ...
])
->contextMenuActions([
ContextMenuSection::make([
ContextMenuItem::for(
Action::make('archive')
->requiresConfirmation()
->action(fn ($record) => $record->archive()),
)
->label('Archive')
->icon(Heroicon::ArchiveBox)
->color('warning'),
])->label('Manage'),
ContextMenuSeparator::make(),
ContextMenuItem::for(DeleteAction::make())
->label('Delete')
->icon(Heroicon::Trash)
->color('danger'),
])
->contextMenuBulkActions([
ContextMenuItem::forBulkAction(
BulkAction::make('archiveSelected')
->label('Archive Selected')
->requiresConfirmation()
->action(fn ($records) => $records->each->archive()),
)
->icon(Heroicon::ArchiveBox)
->color('warning'),
]);
}
The wrapped actions are registered as table actions, but they are not rendered in the normal row action column. On click, the package calls Filament's table action mounting path for the row record key.
Bulk actions are registered as table bulk actions without rendering in the normal bulk action dropdown. When the right-clicked row is already selected, the bulk menu uses the current Filament selection, including select-all-across-pages state. When the right-clicked row is not selected, the single-record menu opens instead.
#Flowforge cards
If relaticle/flowforge is installed, the plugin also registers a contextMenuCardActions() macro on Flowforge boards:
use Filament\Actions\Action;
use Filament\Support\Icons\Heroicon;
use Leek\FilamentRightClick\Menu\ContextMenuItem;
use Relaticle\Flowforge\Board;
public function board(Board $board): Board
{
return $board
->query(Task::query())
->columns([
// ...
])
->recordActions([
// Visible card actions...
])
->contextMenuCardActions([
ContextMenuItem::for(
Action::make('viewTask')
->label('View Task')
->action(fn ($record) => $this->viewTask($record)),
)
->icon(Heroicon::Eye),
ContextMenuItem::for(
Action::make('archiveTask')
->requiresConfirmation()
->action(fn ($record) => $record->archive()),
)
->label('Archive')
->icon(Heroicon::ArchiveBox)
->color('warning'),
]);
}
Flowforge card context actions are registered with Filament's action cache, but they are not added to Flowforge's visible card action group. On click, the package calls Flowforge's native card action mounting path with the card's recordKey.
#Trigger a workflow (Filament Workflow Engine)
Because context menu items wrap native Filament actions, any action works — including the TriggerWorkflowAction shipped by Filament Workflow Engine. If leek/filament-workflows is installed, drop it into a row menu to let users run a manual workflow against the right-clicked record:
use Filament\Support\Icons\Heroicon;
use Leek\FilamentRightClick\Menu\ContextMenuItem;
use Leek\FilamentWorkflows\Filament\Actions\TriggerWorkflowAction;
->contextMenuActions([
ContextMenuItem::for(
TriggerWorkflowAction::make(),
)
->label('Run Workflow')
->icon(Heroicon::Play),
]);
The action opens Workflow Engine's own modal, filtered to manual workflows configured for that record's model, and queues the run — all authorization, rate limiting, and notifications stay owned by the Workflow Engine. No wiring is required beyond installing both packages.
#Screenshot
#Behavior
- Right-click opens the menu anywhere on a table row except existing interactive controls.
- The browser context menu is only suppressed for rows in tables with configured right-click actions.
ContextMenukeyboard key andShift+F10open the menu for the focused or last-hovered row.Escapecloses the menu, arrow keys move through items, andEnter/Spacetrigger the focused item.- Touch and long-press gestures are intentionally not included in v1.
#Static menu, server-enforced actions
The menu label, icon, and color are static metadata on ContextMenuItem. The underlying Filament action still decides whether the operation can run for the specific record.
If a right-click item points to an action that is hidden, disabled, or unauthorized for a row, Filament will refuse to mount it. The menu closes and no client-side policy decision is made.
#Asset loading
Assets are registered as loadedOnRequest() and are requested only by tables that use contextMenuActions() or contextMenuBulkActions().
If you publish or bundle assets in your own build pipeline, keep the DOM contract intact:
- table root record menu:
data-filament-right-click-record-config - table root bulk menu:
data-filament-right-click-bulk-config - legacy table root record menu:
data-filament-right-click-config - Flowforge board card menu:
data-filament-right-click-flowforge-card-config - row key source: Filament's native row
wire:key - Flowforge card key source:
data-card-id - record action call:
mountTableAction(actionName, recordKey) - Flowforge card action call:
mountAction(actionName, [], { recordKey }) - bulk action call: synchronize Filament's selected table record properties, then mount the bulk action
#Bulk actions
Use contextMenuBulkActions() with ContextMenuItem::forBulkAction() or pass a BulkAction directly:
use Filament\Actions\BulkAction;
use Leek\FilamentRightClick\Menu\ContextMenuItem;
$table->contextMenuBulkActions([
ContextMenuItem::forBulkAction(
BulkAction::make('deleteSelected')
->label('Delete Selected')
->requiresConfirmation()
->action(fn ($records) => $records->each->delete()),
)
->color('danger'),
]);
Bulk actions are still server-enforced by Filament. Hidden, disabled, and unauthorized actions will not mount.
#Compatibility
This package targets Filament v4 and v5.
Flowforge support is optional and is registered only when Relaticle\Flowforge\Board exists.
Record actions use Filament's table action mounting path. Bulk actions use the newer unified mountAction() path when available and fall back to Filament's table bulk action compatibility method.
#More Filament plugins by Leek
Premium
- Filament UI Plus — Enhanced UI components: dual sub-navigation, animated sidebar, horizontal-scroll tables, loading bar, and more.
- Filament Workflow Engine — Automated workflows with a visual builder, triggers/actions, async execution, and audit logging.
- Filament Decision Tables — Business rules engine with spreadsheet-style decision tables.
Free & open source
- Filament Header Filters — Inline filters attached to table column headers.
- Filament Subtenant Scope — Second-level tenancy scoping via a topnav dropdown.
- Filament DiceBear — DiceBear avatar provider with 31 styles.
The author
Web Application Architect and Developer with a passion for helping businesses make sense of web-based technology and its numerous applications.
From the same author
Decision Tables (Rules Engine)
A visual rules engine for Filament v4 that lets users create and manage complex decision logic - no code required.
Author:
Chris Jones
DiceBear Avatars
DiceBear avatar provider for Filament panels with 31 avatar styles, disk caching, and per-model customization.
Author:
Chris Jones
Workflow Engine (Automation)
Create powerful workflow automations with a visual builder, extensible triggers and actions, async execution, and comprehensive audit logging.
Author:
Chris Jones
UI Plus
Enhanced UI components. Adds features that Filament doesn't ship out of the box, designed to be minimally invasive and upgrade-safe.
Author:
Chris Jones
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament