Created
January 21, 2015 02:31
-
-
Save jesseschutt/bcca82002ca84bd06fa0 to your computer and use it in GitHub Desktop.
First/Last within Blade Foreach
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@foreach( $company->user_tags as $index => $tag) | |
@if($index == 0)<p><!-- First Time Through -->@endif | |
<span class="label label-primary">{{ $tag }}</span> | |
@if($index == count($company->user_tags) - 1) </p> <!-- Last Time Through -->@endif | |
@endforeach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works only if $company->user_tags is a 0 indexed array