Backend\UserController::index PHP Method

index() public method

Display a listing of the users.
public index ( ) : Response
return Response
    public function index()
    {
        $users = $this->user_manager->findAllUsers();
        // dd($users);
        $this->layout->title = 'All Users';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.users.index')->with('users', $users);
    }