Hello..
How to concate volt variable like this:
$var = 'abc';
$var .= 'def';
$var .= 'ghi';
echo $var; output: abcdefghi
Thanks
This post is marked as solved. If you think the information contained on this thread must be part of the official documentation, please contribute submitting a pull request to its repository.
Hello..
How to concate volt variable like this:
$var = 'abc';
$var .= 'def';
$var .= 'ghi';
echo $var; output: abcdefghi
Thanks