Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @if (Auth::check())
  2. <li class="dropdown">
  3. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
  4. Groups <span class="caret"></span>
  5. </a>
  6.  
  7. <ul class="dropdown-menu" role="menu">
  8. @foreach (Auth::user()->groups as $group)
  9. <li><a href="{{ url('/group/'.$group->id) }}"><i class="fa fa-btn fa-users"></i>{{ $group->name }}</a></li>
  10. @endforeach
  11. <li><a href="{{ url('/group/create') }}"><i class="fa fa-btn fa-plus"></i>Create New Group</a></li>
  12. </ul>
  13. </li>
  14. @endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement