FilamentF
Filament3y ago
Arko

Sending data to a modal through `$this->dispatch()`

I am trying to dispatch some data from a Livewire component via $this->dispatch(). How can I access this data in my modal?
    public function useTemplate($templateId): void
    {
        $this->dispatch(
            event: 'open-modal',
            id: 'use-template-modal',
            data: [
                'template_id' => $templateId,
            ],
        );
    }
Was this page helpful?