name = $name; $this->label = $label; $this->optionsList = $optionsList; $this->isRadioButton = $isRadioButton; $this->required = $required; } public function updatedValue() { $this->dispatch('radioChanged', $this->value); } public function render() { return view('livewire.radio-form'); } }