users.blade.php 192 B

1234567891011121314
  1. @extends('layout')
  2. @section('title', $title)
  3. @section('content')
  4. <h1>Users List</h1>
  5. <ul>
  6. @each("users.single-user", $users, "user")
  7. </ul>
  8. @yield('action-button')
  9. @endsection