Laravel Livewire component not refreshing/reloading automatically after refreshing it
Solution 1:
So it seems I've write my component blade view in wrong way.
all things on refreshed component should be wrapped in one div element like this:
<div>
{{-- Anything you want to do --}}
</div>
previously my blade file was like. Which is Wrong
<div class="">
{{ -- some dom elements -- }}
</div>
<div class="">
{{ -- some other dom elements -- }}
</div>
but that should be like.
<div>
<div class="">
{{ -- some dom elements -- }}
</div>
<div class="">
{{ -- some other dom elements -- }}
</div>
</div>
So Whatever you write, that should be inside ONE PARENT DIV ELEMENT