Backend\UserGroupsController::index PHP 메소드

index() 공개 메소드

Display a listing of the user groups.
public index ( ) : Response
리턴 Response
    public function index()
    {
        $this->layout->title = 'All User Groups';
        $user_groups = $this->usergroup_manager->findAllGroups();
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.user_groups.index')->with('user_groups', $user_groups);
    }