1234567891011121314151617181920212223 |
- @extends('layout')
- @section('title', $title)
- @section('content')
- @section('button')
- <span>Play</span>
- <button>Play</button>
- @show
- <h1>Users List</h1>
- <ul>
- @each('users.single-user', $users, 'user')
- </ul>
- <hr>
- @yield('button')
- @endsection
|