How to call another component function in current component in Livewire 3 Laravel
In Laravel Livewire, you can call a method from one component in another component by dispatch() method in the current component and listening for that event in the target component. So following is the way to achieve this result. Steps to Call Another Component’s Function in Livewire 1. dispatch an Event in the Current Component … Read more