Is it possible to register livewire endpoints for columns?
I'm trying to come up with how I can create more advanced custom column types in filament, but as far as I can see, the only native option is to register an action, which is inadequate for the use case I have in mind. I've looked through the source code and seen that I can hijack the
updateState handler, but that is a really hacky way that I would like to avoid. Is there a supported way for doing this? Or can I add this functionality easily somewhere in the stack? The makeTable function seems like a possible option. For more context on what I'm trying to achieve, see this GitHub discussion: https://github.com/filamentphp/filament/discussions/11985GitHub
Package Table builder Package Version v3.2.42 How can we help you? I'm trying to create a custom column where the user can click the column in order to open a popover containing a select field ...