Unable to find component: [Filament\Widgets\WidgetConfiguration]

I have built a CustomView and am trying to include a view within my blade.php as it says in the docs. There I get this error...

In my Ressource File i added:

    public static function getWidgets(): array
    {
        return [
            ServerLineChart::class,
            ServerStats::class
        ];
    }


tryed to use that Widget in my View blade.php File:

<div>   @livewire(\App\Filament\Dashboard\Resources\RootServerResource\Widgets\ServerLineChart::make([
                            "record" => $this->record,
                            "title" => "CPU",
                        ]))
</div>


https://filamentphp.com/docs/3.x/widgets/adding-a-widget-to-a-blade-view
image.png
Was this page helpful?