12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Document</title>
- </head>
- <body>
-
-
-
- <ul>
- @foreach ($users as $user)
- <li>
- <a href="{{route('user.position', $user->id)}}">{{ $user->name }}</a>
- </li>
- @endforeach
- </ul>
-
- </body>
-
- </html>
|