Skip to content

Instantly share code, notes, and snippets.

@bobmagicii
Created December 9, 2015 22:52
Show Gist options
  • Save bobmagicii/183068485b7cdad2ddac to your computer and use it in GitHub Desktop.
Save bobmagicii/183068485b7cdad2ddac to your computer and use it in GitHub Desktop.
<ul class="TextAlignCenter">
<?php $element->Items->Each(function($Value){ ?>
<li><?php echo $Value->Name ?></li>
<?php }); ?>
</ul>
<ul class="TextAlignCenter">
<?php foreach($element->Items as $Value): ?>
<li><?php echo $Value->Name ?></li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment