❌ Bad:
<div wire:poll>
User Content
</div>
✔️ Good:
Define the listener in the component using On
attribute:
class Dashboard extends Component
{
#[On('post-created')]
public function updatePostList($title)
{
// ...
}
}
Dispatch the event in every other component:
$this->dispatch('post-created');