I am using Livewire 2.x and I have a query, it turns out that in my livewire component, I have several methods that are called chained according to the events that happen (a file is uploaded and processed in stages which are reported to the UI)
There are about 7 stages, but in stage 6, the component method does nothing on purpose for the test, and it turns out that it takes several seconds. I have cleaned with $this->refresh(‘varname’) thinking that they are the public properties that are transmitted, but it still takes a while to do anything.
More than a problem, I would actually like to know what happens since apparently it is the way Livewire works. I would like to better understand how it works.
thank you