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 :
7 Replies
can you share this function
$get(‘address_type’) is not returning a Boolean. You need to cast it as one to use it this way.
It is just my helper method in calling all the us states.
states.json
Searchable selects cant be disabled and reactive unless you also pass a closure inside the the searchable() method to check if the component is disabled or not
Or at least I’m pretty sure
something like this:
Did not work.
Remove your second searchable().
Damn that worked!
Thanks guys, I think the
->searchable
callback fixed the issue.