Is it possible to duplicate a logic branch for let’s say 10 times in order to create something like
for ($x = 0; $x <= 10; $x++) {
"Here goes the logic branch";
}
as shown at the image attached.

See the red arrow? This is the logic I need 10 times.