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?$this->dispatch() public function useTemplate($templateId): void
{
$this->dispatch(
event: 'open-modal',
id: 'use-template-modal',
data: [
'template_id' => $templateId,
],
);
}