Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @if(count($users) > 0)
  2.     @foreach ($users as $user)
  3.         <p>Korisničko ime: {{ $user->username }}</p>
  4.     @endforeach
  5. @else
  6.     <p>Nema korisnika.</p>
  7. @endif