{"record":{"id":"753010d8705c17f1","repo":"filamentphp/filament","slug":"action-action-name-was-not-found-for-actio","errorCode":null,"errorMessage":"Action [{$action['name']}] was not found for action [{$parentAction->getName()}].","messagePattern":"Action \\[(.+?)\\] was not found for action \\[(.+?)\\]\\.","errorType":"exception","errorClass":"ActionNotResolvableException","httpStatus":null,"severity":"error","filePath":"packages/actions/src/Concerns/InteractsWithActions.php","lineNumber":586,"sourceCode":"                $this->cacheSchema(\n                    \"mountedActionSchema{$actionNestingIndex}\",\n                    $this->getMountedActionSchema($actionNestingIndex, $resolvedAction),\n                );\n            }\n        }\n\n        return $resolvedActions;\n    }\n\n    /**\n     * @param  array<string, mixed>  $action\n     * @param  array<Action>  $parentActions\n     */\n    protected function resolveAction(array $action, array $parentActions): ?Action\n    {\n        if (count($parentActions)) {\n            $parentAction = Arr::last($parentActions);\n            $resolvedAction = $parentAction->getModalAction($action['name']) ?? throw new ActionNotResolvableException(\"Action [{$action['name']}] was not found for action [{$parentAction->getName()}].\");\n        } elseif (array_key_exists($action['name'], $this->cachedActions)) {\n            $resolvedAction = $this->cachedActions[$action['name']];\n        } else {\n            if (\n                (! str($action['name'])->endsWith('Action')) &&\n                method_exists($this, \"{$action['name']}Action\")\n            ) {\n                $methodName = \"{$action['name']}Action\";\n            } elseif (method_exists($this, $action['name'])) {\n                $methodName = $action['name'];\n            } else {\n                return null;\n            }\n\n            $returnTypeReflection = (new ReflectionMethod($this, $methodName))->getReturnType();\n\n            if (! $returnTypeReflection) {\n                return null;","sourceCodeStart":568,"sourceCodeEnd":604,"githubUrl":"https://github.com/filamentphp/filament/blob/53483fa9340e4ec637985fe454ebb58afb92ea24/packages/actions/src/Concerns/InteractsWithActions.php#L568-L604","documentation":"Error \"Action [{$action['name']}] was not found for action [{$parentAction->getName()}].\" thrown in filamentphp/filament.","triggerScenarios":"Thrown at packages/actions/src/Concerns/InteractsWithActions.php:586 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"}