users.blade.php 274 B

1234567891011121314151617181920212223
  1. @extends('layout')
  2. @section('title', $title)
  3. @section('content')
  4. @section('button')
  5. <span>Play</span>
  6. <button>Play</button>
  7. @show
  8. <h1>Users List</h1>
  9. <ul>
  10. @each('users.single-user', $users, 'user')
  11. </ul>
  12. <hr>
  13. @yield('button')
  14. @endsection