Error with widget in a blade view
Unable to find component: [Filament\Widgets\WidgetConfiguration]
I tried this in a normal blade view, and a Livewire component.
I have confirmed that the class exists.
Livewire Component:
Blade View:
Layout File:
2 Replies
This error occurs when you use "make()" on widgets in a blade file. I was able to get around this by having a Livewire component send all the same variables to the widgets view.
Widgets are livewire components and therefore cannot be instantiated via something like make().
So just use @livewire(WidgetName::class, [data])