How searchable() works on form enum Select?
My Select is defined like this:
Select::make('country')
->label('Country')
->required()
->options(Country::class)
->searchable()
Country class is enum, which implements HasLabel.
Is it exact match searching or some kind of Levenshtein? When i'm typing, select show records, which in my opinion should not be suggested.
When i typed "Polska" i see "Polska" option at first position, but select shows also options like: Bostwana, Kostaryka, Holandia, and many others.
Is it searchable() native behavior or i missed someting?
Select::make('country')
->label('Country')
->required()
->options(Country::class)
->searchable()
Country class is enum, which implements HasLabel.
Is it exact match searching or some kind of Levenshtein? When i'm typing, select show records, which in my opinion should not be suggested.
When i typed "Polska" i see "Polska" option at first position, but select shows also options like: Bostwana, Kostaryka, Holandia, and many others.
Is it searchable() native behavior or i missed someting?
