name = $name; $this->label = $label; $this->required = $required; $this->min = $min; $this->max = $max; $this->step = $step; } public function updatedValue() { $this->dispatch('numberChanged', $this->value); } public function render() { return view('livewire.input-number-ant-d'); } }