Php – html fields in livewire is not updating the data
public function removeCoreFunction($index){ unset($this->coreFunctions[$index]); $this->coreFunctions = array_values($this->coreFunctions); } so i have this function here which removes the specific index from the coreFunctions and makes it an array value again. It works as i expected in the function, however in my…