public static function setLinkPaginationWithFilter($subgroup)
 {
     self::$link_pagination = "admin/datacenter/subgrupo/{$subgroup}/list/";
 }
                <td></td>
                <td></td>
                <td><?DatacenterHelper::pageIndex($page, DatacenterController::$LIMIT_PER_PAGE, $total)?></td>
            </tr>
        </tfoot>
        <tbody>
            <?foreach($data_values as $data):?>
            <?$data = DatacenterHelper::data($data);?>
            <tr>
                <td><?echo $data->getSubgroupName();?></td>
                <td><?echo $data->getYear();?></td>
                <td><?echo utf8_encode($data->getTypeName());?></td>
                <td><?echo utf8_encode($data->getVarietyName());?></td>
                <td><?echo $data->getOriginName();?></td>
                <td><?echo $data->getDestinyName();?></td>
                <td><?echo $data->getFontName();?></td>
                <td><?echo $data->getValue()?></td>
                <td><?DatacenterHelper::linkEdit($data, "Editar");?></td>
            </tr>
            <?endforeach;?>
        </tbody>
    </table>
    <?else:?>
    <strong>Ainda não existem informações armazenadas no Banco de Dados</strong>
    <?endif;?>
</div>
<?if($data_values->count() > 0):?>
<div class="pagination">
    <?DatacenterHelper::pagination($page, DatacenterController::$LIMIT_PER_PAGE, $total);?>
</div>
<?endif;?>