dispatched event not being listened to

In our API, we dispatch an event afte an item is created. I have tried doing the same on our Create page using this code, but nothing is listened to. How can I register my listeners with filament?
protected function afterCreate(): void
{
$this->dispatch(new DataCreated($this->record));
}
protected function afterCreate(): void
{
$this->dispatch(new DataCreated($this->record));
}
1 Reply
delboy1978uk
delboy1978ukOP3w ago
Can anyone help? My DataCreated event is listened to in app/Providers/EventServiceProvider , and like i say if we call create a row via our API using POST, the event is dispatched and the listener triggers, however, when dispatching the event from the create page, nothing is triggered.

Did you find this page helpful?