fairly new to Livewire here.
I ran into something for which i can’t seem to find the answer for, reading through the docs and using google until now.
Suppose that i have some input fields inside of a form which have custom tags with a value assigned to it.
Example: <input type=”text” wire:model=”title” valueid=”332″>
So i do not need the value of the input, but rather the value that is stored inside the custom tag.
For a long time i’ve used jQuery ajax calls and i could just get the ‘valueid’ tag and send its value ‘332’ within the ajax call and process it further inside my controller method(s). But i can’t seem to find how to do that using LiveWire.
Can someone point me to how to get those tags and their values inside of my Livewire controller method(s)?
Many thanks for your help!