Livewire Component Not Working

Hello, I add a livewire component consisting on a select of options. When the select changes, nothing happens (can't see a network request on devtools).

This is the livewire component:
<?php

namespace App\Livewire;

use App\Models\Agency;
use Livewire\Component;

class SelectAgency extends Component
{
    public $selectedOption;

    public $options = [];

    public function mount()
    {
        $this->selectedOption = session('agency.id');
        $this->fetchOptions();
    }

    public function fetchOptions()
    {
        $this->options = Agency::where('status_id', 3)->pluck('name', 'id')->toArray();
    }

    public function updatedSelectedOption($value)
    {
        session(['agency.id' => $value]);
    }

    public function render()
    {
        return view('livewire.select-agency');
    }
}

The component renders fine, but on change nothing happens.
Was this page helpful?