Hello guys,
I have this code on the blade:
component:
public $text;
public function render ()
{
return view ('livewire.shared');
}
When typing in the field the value is not going to the $ text variable
Any idea?
thank you all!
Hello guys,
I have this code on the blade:
component:
public $text;
public function render ()
{
return view ('livewire.shared');
}
When typing in the field the value is not going to the $ text variable
Any idea?
thank you all!
Have you used wire:model="text"
on your input field?
<input type="text" wire:model="text" />