{"record":{"id":"f09e443ba854969b","repo":"filamentphp/filament","slug":"action-action-name-not-found-on-table","errorCode":null,"errorMessage":"Action [{$action['name']}] not found on table.","messagePattern":"Action \\[(.+?)\\] not found on table\\.","errorType":"exception","errorClass":"ActionNotResolvableException","httpStatus":null,"severity":"error","filePath":"packages/actions/src/Concerns/InteractsWithActions.php","lineNumber":649,"sourceCode":"     * @param  array<Action>  $parentActions\n     */\n    protected function resolveTableAction(array $action, array $parentActions): Action\n    {\n        if (! ($this instanceof HasTable)) {\n            throw new ActionNotResolvableException('Failed to resolve table action for Livewire component without the [' . HasTable::class . '] trait.');\n        }\n\n        if (count($parentActions)) {\n            $parentAction = Arr::last($parentActions);\n\n            return $parentAction->getModalAction($action['name']) ?? throw new ActionNotResolvableException(\"Action [{$action['name']}] was not found for action [{$parentAction->getName()}].\");\n        }\n\n        if ($action['context']['bulk'] ?? false) {\n            $resolvedAction = $this->getTable()->getBulkAction($action['name']);\n        }\n\n        $resolvedAction ??= $this->getTable()->getAction($action['name']) ?? throw new ActionNotResolvableException(\"Action [{$action['name']}] not found on table.\");\n\n        if (filled($action['context']['recordKey'] ?? null)) {\n            $record = $this->getTableRecord($action['context']['recordKey']);\n\n            if (! $record) {\n                throw new ActionNotResolvableException(\"Record [{$action['context']['recordKey']}] no longer exists.\");\n            }\n\n            $resolvedAction->getRootGroup()?->record($record) ?? $resolvedAction->record($record);\n        }\n\n        return $resolvedAction;\n    }\n\n    /**\n     * @param  array<string, mixed>  $action\n     * @param  array<Action>  $parentActions\n     */","sourceCodeStart":631,"sourceCodeEnd":667,"githubUrl":"https://github.com/filamentphp/filament/blob/53483fa9340e4ec637985fe454ebb58afb92ea24/packages/actions/src/Concerns/InteractsWithActions.php#L631-L667","documentation":"Error \"Action [{$action['name']}] not found on table.\" thrown in filamentphp/filament.","triggerScenarios":"Thrown at packages/actions/src/Concerns/InteractsWithActions.php:649 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"53483fa9340e4ec637985fe454ebb58afb92ea24","analyzedAt":"2026-08-17T02:06:23.049Z","schemaVersion":2},"datasetVersion":"2026-08-17T04:17:16.089Z"}