hello.blade.php 470 B

1234567891011121314151617181920212223242526272829
  1. @extends('layouts.users')
  2. @inject('custom', 'App\Services\CustomService')
  3. @section('title', 'Custom title for hello page')
  4. @push('css')
  5. <style type="text/css">
  6. .vip {
  7. color: red;
  8. }
  9. </style>
  10. @endpush
  11. @section('content')
  12. {{ $custom->getSmthUsefull() }}
  13. <h1>Hello</h1>
  14. <ul>
  15. @foreach($users as $user)
  16. <li @if($user === 'Steve') class="vip" @endif>
  17. {{ $loop->iteration }} of {{ $loop->count }}.
  18. {{ $user }}
  19. </li>
  20. @endforeach
  21. </ul>
  22. @endsection