R
R
@anugupta Have you tried json_decode? ``` $data = get_object_vars(json_decode('{"formId":2,"children":{"8":{"inputs":["input_8"]},"9":{"inputs":["input_9"]},"10":{"inputs":["input_10"]},"11":{"inputs":["input_11"]},"13":{"inputs":["input_13"]}},"repeaterId":"1","repeatCount":2}')); foreach($data['children'] as $child) { var_dump($child); } ```
I am having the same issue. My device id is different though: ```sh Bus 001 Device 005: ID 046d:c333 Logitech, Inc. Gaming Keyboard G610 ```
@rdlandim populating select fields works fine for me. You need to pass it the value attribute of the select field though, not the option value. ``` Select a type Sample...
I was trying to do something similar, but I found that `$country->contains('states')` doesn't work, because the `hydrated` array key also contains a value called `states`, so in my case ``$country->contains('states')``...
You need to add the following to `config/scout.php` as mentioned under [installation](https://github.com/yabhq/laravel-scout-mysql-driver#installation): ```php 'mysql' => [ 'mode' => 'NATURAL_LANGUAGE', 'model_directories' => [app_path()], 'min_search_length' => 0, 'min_fulltext_search_length' => 4, 'min_fulltext_search_fallback' =>...