When typing the text does not reflect in the $ text variable

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" />
1 Like