Open modal from edit table action
How can I open a modal from the edit action of a table row. I want to have a slide-over where I can edit the record. I have this in my table actions:
It doesn't do anything, and I also need to pass a parameter. I have a Livewire component for the edit transaction modal, so I'd ideally like to open that when the row is clicked, unless there's an easier magic way to edit table rows in a modal. Can't seem to find anything in the docs that would allow me to do this, but I feel like it should be possible.
I've also tried:
It doesn't do anything, and I also need to pass a parameter. I have a Livewire component for the edit transaction modal, so I'd ideally like to open that when the row is clicked, unless there's an easier magic way to edit table rows in a modal. Can't seem to find anything in the docs that would allow me to do this, but I feel like it should be possible.
I've also tried:
Solution
The last bit of my question seems to be how to do it based on this github discussion:
https://github.com/filamentphp/filament/discussions/7529
but it's not working.
https://github.com/filamentphp/filament/discussions/7529
but it's not working.
GitHub
I am going to show a livewire component in modal window when user clicks a filament table action. protected function getTableActions() { return [ ActionGroup::make([ ViewAction::make()->form([ T...