I\'m trying to create an array and store values in it within for loop but failed so far. How can I do it with Twig?
I\'ve read these but being new in Twig makes it hard
I have other solution for arrays in loop. This solution is letting you to make arrays like PHP:
$my_array[] = array('key_1' => $value1, 'key_2' => $value_2);
in this case:
{% set cars_details = [] %}
{% for car in cars %}
{% set car = car|merge({(loop.index0) : {'color': car.color, 'year': car.year} }) %}
{% endfor %}
{{ car|dump }}