Hello..
How to concate volt variable like this:
$var = 'abc';
$var .= 'def';
$var .= 'ghi';
echo $var; output: abcdefghi
Thanks
depending on Volt documentation it should be something like this:
{% set var = "abc" %} {% set var = var ~ "def" %} {% set var = var ~ "ghi" %}
Thanks @Aboozar Ghaffari