allpositions.blade.php 331 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <ul>
  9. @foreach ($users as $user)
  10. <li>
  11. <a href="{{route('user.position', $user->id)}}">{{ $user->name }}</a>
  12. </li>
  13. @endforeach
  14. </ul>
  15. </body>
  16. </html>