Skip to content

Instantly share code, notes, and snippets.

@duikb00t
Created April 1, 2014 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duikb00t/9914828 to your computer and use it in GitHub Desktop.
Save duikb00t/9914828 to your computer and use it in GitHub Desktop.
grid
<div class="control-group">
<p class="pull-left">Authorised Viewers</p>
@foreach(array_chunk($users->all(), 3) as $row)
<div class="controls span2">
@foreach ($users as $user)
<label class="checkbox">
<input type="checkbox" value="option{{ $user->id }}" id="option{{ $user->id }}">{{ $user->first_name }} {{ $user->last_name }}
</label>
@endforeach
</div>
@endforeach
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment