| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Hello</title>
- <style type="text/css">
- .vip {
- color: red;
- }
- </style>
- </head>
- <body>
- @include('partials.header')
- <h1>Hello</h1>
- <ul>
- @foreach($users as $user)
- <li @if($user === 'Steve') class="vip" @endif>
- {{ $loop->iteration }} of {{ $loop->count }}.
- {{ $user }}
- </li>
- @endforeach
- </ul>
- @include('partials.footer')
- </body>
- </html>
|