Laravel – Livewire component update with new data
I need help with the Livewire component update based on the select dropdown. class FutureTreeMapChart extends Component { public $segment = 'N50'; public $expiry = '2024-02-25'; public $data; public function fetchTreeMap() { if (!empty($this->segment) && !empty($this->expiry)) { .....some codes to…