name = $name; $this->label = $label; $this->required = $required; $this->optionsList = $optionsList; } public function updatedValue() { $this->dispatch('multiSelectOptionsChanged', $this->value); } public function render() { return view('livewire.multi-select-options'); } }