Sponsored Link

repeat

repeat tag repeat the process.

Syntax

{{ @repeat val_name }}
    statements
{{ @endrepeat }}

PHP

$assign['sample_repeat1'] = 3;

Template

{{ @repeat sample_repeat1 }}*{{ @endrepeat }}

Result

***