digoots
Searchable select returning invalid results
As title, when I setup a simple Select component like below, it is returning results that do not match the query string?
Select::make('customer_id')
->options(Customer::all()->sortBy('name')->pluck('name', 'id'))
->searchable(['name'])->required(),
Is there something I am missing here?3 replies