10

I have read the volt documentation in phalcon page and i cant find any example for this...

You can make easy loops in objects, for example, in php:

foreach($pages as $page){
    echo $page->title;
} 

in volts would be ...

{% for page in pages %}
    {{ page.title }}
{% endfor %}

My question is, how i can make a normal numerical loop in volt? For example:

for($n=1;$n<10;$n++){
    echo $n;
}

Thanks.

Stefan Luv
  • 1,179
  • 3
  • 12
  • 28

1 Answers1

30

This will count from 1 to 10

{% for i in 1..10 %}
    {{ i }}
{% endfor %}
redshark1802
  • 894
  • 2
  • 12
  • 22