aymanalhattami/filament-context-menu
Ctrl+Click to trigger context menus).Adopt if:
Look elsewhere if:
*"This package adds a right-click context menu to our Filament admin panel, cutting the time admins spend hunting for actions by up to 40%. For example, editing or deleting records becomes a one-click right-click operation instead of navigating through top-level buttons. It’s a low-code, high-impact upgrade that:
*"This package integrates Filament Actions into right-click menus for tables, record pages, and custom pages. Key benefits:
getContextMenuActions().ContextMenuTextColumn).composer require aymanalhattami/filament-context-menu
Then add the PageHasContextMenu trait to any Filament page and define getContextMenuActions(). Example:
use AymanAlhattami\FilamentContextMenu\Traits\PageHasContextMenu;
use Filament\Actions\EditAction;
class UserList extends ListRecords {
use PageHasContextMenu;
public function getContextMenuActions(): array {
return [
EditAction::make()->record($record),
Action::make('Quick View')->url(fn () => $record->getViewUrl()),
];
}
}
```"*
How can I help you explore Laravel packages today?