Adding an action to a Livewire component
I try this example from documentation:
https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component
But button not open modal windows
I put livewire component in a x-filament-panels::page
Not error from browser console, and on button push correct(200) network call, with modal html on it, but not show it.
Anybody try it?
Solution:Jump to solution
I find where problem is, on this code:
``` public function editAction(): Action
{
return Action::make('edit')->label('Edit')...
2 Replies