filamentphp/filament · error · LogicException
Alpine component with ID [{$id}] not found for package [{$pa
Error message
Alpine component with ID [{$id}] not found for package [{$package}]. What it means
Error "Alpine component with ID [{$id}] not found for package [{$package}]." thrown in filamentphp/filament.
Source
Thrown at packages/support/src/Assets/AssetManager.php:125
$assets = $this->getAssets($this->alpineComponents, $packages);
return $assets;
}
public function getAlpineComponentSrc(string $id, string $package = 'app'): string
{
/** @var array<AlpineComponent> $components */
$components = $this->getAlpineComponents([$package]);
foreach ($components as $component) {
if ($component->getId() !== $id) {
continue;
}
return $component->getSrc();
}
throw new LogicException("Alpine component with ID [{$id}] not found for package [{$package}].");
}
/**
* @param array<string> | null $packages
* @return array<string, mixed>
*/
public function getScriptData(?array $packages = null): array
{
$data = [];
foreach ($this->scriptData as $package => $packageData) {
if (
($packages !== null) &&
filled($package) &&
(! in_array($package, $packages))
) {
continue;
}View on GitHub (pinned to 53483fa934)
When it happens
Trigger: Thrown at packages/support/src/Assets/AssetManager.php:125 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of filamentphp/filament@53483fa934 (2026-08-17).
Data as JSON: /api/errors/82a6b80db8da3fc9.
Report an issue: GitHub.