Render modals inside custom page

I've created a custom "Calendar" page and a custom CreateReservation livewire component. This is my create-reservation blade
<div>
    <form wire:submit="create">
        {{ $this->form }}

        <button type="submit">
            Submit
        </button>
    </form>

    <x-filament-actions::modals/>
</div>
and I don't understand how can I open the form as a modal when click on a FullCalendar cell
Was this page helpful?