示例#1
0
                </div>
            </div>
        </form>        
    </div>    
</div>
<table class="table table-striped">
    <thead>
        <tr>
            <th>#</th>
            <th>Nome</th>
            <th>Editar</th>
            <th>Deletar</th>
        </tr>
    </thead>
    <?php 
foreach ($servicosModel->findAll() as $servico) {
    ?>
        <tr>
            <td><?php 
    echo $servico->id;
    ?>
</td>
            <td><?php 
    echo $servico->nome;
    ?>
</td>
            <td><a href="<?php 
    echo url('/admin/servicos?', array('id' => $servico->id));
    ?>
"><span class="glyphicon glyphicon-edit"></span></a></td>
            <td><a href="<?php