| 1234567891011121314151617181920212223242526272829 |
- @extends('layouts.users')
- @inject('custom', 'App\Services\CustomService')
- @section('title', 'Custom title for hello page')
- @push('css')
- <style type="text/css">
- .vip {
- color: red;
- }
- </style>
- @endpush
- @section('content')
- {{ $custom->getSmthUsefull() }}
- <h1>Hello</h1>
- <ul>
- @foreach($users as $user)
- <li @if($user === 'Steve') class="vip" @endif>
- {{ $loop->iteration }} of {{ $loop->count }}.
- {{ $user }}
- </li>
- @endforeach
- </ul>
- @endsection
|