Blade view with Tabs, Actions and Table conflicts
I have a blade view that has the following tabs:
one of this tabs contains a Filament table:
in the other tabs I have Filament actions, that was working fine before I add the
{{ $table }}
in the third tab, but now they are not firing the action method (if I use ->url(...)
or ->dispatch(...)
they are working, but not with ->action(...)
).
There is no errors in console or anything, the loading indicator of the button starts and finish an nothing works, but when I change to the tab containing the table I have my action fired and the action modal is visible.
If I remove the {{ $table }}
all actions works fine.
any idea?4 Replies
If I add
just after my actions, they works. But the table actions not working anymore!
Are the tabs inside a form?
Sorry didn’t see your message, nope they are outside
Hmm. I’m thinking it’s maybe a conflict of the HasActions interface and trait. Are you using one livewire component. Or is each tab’s content individual livewire components?