What seems to be the problem:
I have a form wth a input field, the value of that input field i want too pass as a variabele to the livewire component ?
<div class="modal-body">
<input type="hidden" id="idProduct" name="idProduct">
</div>
@livewire('stockmodalForm', 'Value of input above passing here ?')
How can i make this work ?
I cannot use view:model because the value in the input field is given by javascript and is not passed to livewire.