Livewire

Targeted Event Dispatching with wire:ref in Livewire v4

February 01, 2026 1 min read 37 views

Livewire v4 introduces wire:ref for targeted event dispatching.

Usage


    
...

Dispatch to Ref

public function save(): void
{
    // Save logic...
    $this->dispatch('close')->to(ref: 'modal');
}
Share this post:

Related Posts

Comments (0)

Please log in to leave a comment. Log in

No comments yet. Be the first to comment!