Seán Lynch

Results 22 comments of Seán Lynch

Fixed by wrapping `vss` in a form and adding `autocomplete="off"` to the form element

Do you need this nested `` element? Try give that `autocomplete="false"` as well as the form, and try remove it to see if that fixes it. I don't have a...

Try a simple version first, then add another layer of complexity and see where it breaks

Can you simplify the code example? No need for it to be 650 lines

Can you share some code? If your v-model is an object, you should replace v-model with `:value` and update your state manually when you select something

Same problem for me, custom template closes. ```php {{ newItem }} : click to create ```

We need to do something like this ``` Model::where('firstname', 'like', '%$firstname%') ->exceptWhere('lastname, 'like', '%$lastname%'); ``` https://stackoverflow.com/questions/65124775/except-query-in-laravel/65124821#65124821 This worked ``` Model::where('firstname', 'LIKE', "%$firstname%") ->whereNotExists(function ($q) use ($lastname) { $q->where('lastname', 'like', "%$lastname%");...