Ejemplo n.º 1
0
 /**
  * Show the users index page.
  *
  * @return \Response
  */
 public function getIndex()
 {
     //$users        = $this->users->findAllPaginated();
     $tagList = $this->tags->listAll();
     $categoryList = $this->categories->listAll();
     $userList = $this->users->listAllCompany();
     $this->view('admin.users.jobOpp', compact('tagList', 'categoryList', 'userList'));
 }