I'm developing a web page in livewire. There is a Livewire BookComponent with a button "Add new page" that calls a method in the controller that redirects to another Livewire controller, PageController that displays a form. When the save button is pressed a "save" methos inside PageController is called, and at the end of the method I want to notify the BookController that the page has been saved, so I do
same problem, and found the reason. To register listeners, the page has #[On()] method must be visited. Then it is starting to listen events. BaseOn class store the listeners to activate them. I guess, I will move my listeners index page :/