Laravel Livewire component not refreshing/reloading automatically after refreshing it
问题 So, I'm currently using Laravel Livewire in one of my projects. But when I try emit an event from one component to another component by magic mathod $refresh , its refreshing (got the dom in xhr request ) the total component but the Front end is not updating realtime. ProductReviewForm.php Component public function save() { //some functionalities .... $this->emit('reviewSectionRefresh'); } ProductReviewSection.php Component protected $listeners = [ 'reviewSectionRefresh' => '$refresh', ];