123456789101112131415161718192021222324 |
- <!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>
|