// For
@for ($i = 0; $i < max_value; $i++)
//your code
@endfor
//Foreach
@foreach ($items as $item)
//your code
@endforeach
<div>
@for ($i = 0; $i < $max; $i++) //Where $max is whatever you need as break condition.
<p>{{ $i }}</p> //This would print $i in a paragraph. You do whatever you need here.
@endfor
</div>
@for($i=1 ; $i<=10; $i++)
<h2>{{$i}}</h2>
@endfor