How to open a resource modal from another page
from page A i have
<button wire:click="updateItem({{ $item['id'] }})">update item</button>
and page B ItemResource which have edit item modal in it
how to open ItemResource modal edit from page A ?1 Reply
Instead use
And then use #[On] Livewire attribute on the other pages method.