Пример #1
0
 /**
  * Show the users index page.
  *
  * @return \Response
  */
 public function getIndex()
 {
     $users = $this->users->findAllPaginated();
     return view('admin.users.list', compact('users'));
 }