Good afternoon. I work with laravel and use sync. I get an array in this form:
[
0 => ['attribute' => '...', 'value' => '...']
1 => ['attribute' => '...', 'value' => '...']
...
]
Is it possible to stuff such an array into sync? If possible, can you tell me how to do it correctly?
Already used sync, but with an array of type:
[0 => a, 1 => b, 2 => c, ...]