Unable to call component method. Public method [setValue] not found on component

blade file
<button wire:click.prevent="setValue({{ $i  }})">


component
protected string $view = 'forms.components.star-rating';

protected int $value = 2;
protected int $maxStars = 5;

public function setValue(int $value): void
{
    $this->value = $value;
}
Was this page helpful?