Open modal from custom page
What are the options with Filament and Livewire to open an modal from a link? I have a custom Filament page with an calendar on it. In the calendar I want to be able to click a cell and trigger and modal with some form inputs using the form builder. For some reason I cannot find what the best way to do this.
Solution
Got it working with the mountAction option. I call a method in the livewire component using wire:click and in this method I mount the action. This results in opening an slide over :). Thanks for pointing me into the right direction.