I have a select html tag in livewire view and a livewire component with following code:
and mount livewire component with this line in my blade view:
@livewire(‘admin.category-attributes’, [‘attributeId’ => $attribute->id], key(‘attr-’.$attribute->id))
but, when I change selected item, nothing happens and no xhr requests are sent to the server by the browser.
Let me say this too, I have inserted livewireStyles and livewireScripts blade statements in master blade file and they are loaded correctly. Thank you for your help.