hello.blade.php 492 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Hello</title>
  7. <style type="text/css">
  8. .vip {
  9. color: red;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. @include('partials.header')
  15. <h1>Hello</h1>
  16. <ul>
  17. @foreach($users as $user)
  18. <li @if($user === 'Steve') class="vip" @endif>
  19. {{ $loop->iteration }} of {{ $loop->count }}.
  20. {{ $user }}
  21. </li>
  22. @endforeach
  23. </ul>
  24. @include('partials.footer')
  25. </body>
  26. </html>