Select::searchable() is not reactive?

Here's my screen record: https://www.loom.com/share/67e1b9b57e174bf3bc727ff7802d822c

The rest of the fields are working except for the select dropdown.

Here's my snippet :
Select::make('state')
  ->options(us_states())
  ->disabled(fn(Closure $get) => !$get('address_type') )
  ->required()
  ->searchable()
  ->reactive()
  ->afterStateUpdated(function(Closure $get, $state){
  }),
Was this page helpful?