<button
type="button"
x-on:click="$dispatch('open-modal', {id: 'custom-modal'})"
>
Open
</button>
<x-filament::modal id="custom-modal">
<div x-data="{ name: 'Filament' }">
<x-slot name="header">
Name: <span x-text="name"></span>
</x-slot>
<div>
<input x-model="name" />
</div>
</div>
</x-filament::modal>
<button
type="button"
x-on:click="$dispatch('open-modal', {id: 'custom-modal'})"
>
Open
</button>
<x-filament::modal id="custom-modal">
<div x-data="{ name: 'Filament' }">
<x-slot name="header">
Name: <span x-text="name"></span>
</x-slot>
<div>
<input x-model="name" />
</div>
</div>
</x-filament::modal>