DEV Community

Discussion on: Peasy way to Show Alerts in Laravel Livewire

Collapse
 
abrardev99 profile image
Abrar Ahmad

You need to pass $this as parameter.
For example helper will looks like below

public function dispatch($content)
{
$content->dispatchBrowserEvent('success', ['message' => 'success']);
}

and then call in Livewire

dispatch($this);