Skip to content

Instantly share code, notes, and snippets.

@jonnybarnes
Created November 20, 2014 15:45
Show Gist options
  • Save jonnybarnes/77ce7d4dc635fc7ab98a to your computer and use it in GitHub Desktop.
Save jonnybarnes/77ce7d4dc635fc7ab98a to your computer and use it in GitHub Desktop.
avoid array to string conversion
//stuff
<ul>
@foreach($data as $key => $value)
<li>{{ $key }}: <?php if(is_array($value)) { echo '<ul>'; foreach($value as $scope) { echo "<li>$scope</li>"; } echo '</ul>'; } else { echo $value; }; ?></li>
@endforeach
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment