Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <ul>
  2.     @foreach ($users as $id => $user)
  3.         <li class="row @if($id == 0) first @endif @if(count($users) == $id +1) last @endif" >{{ $user->username }}</li>
  4.     @endforeach
  5. </ul>