✏️ 正在编辑: enderecos.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-base/enderecos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<table> <thead> <tr class="top_list"> <th>Logradouro</th> <th>Número</th> <th>Complemento</th> <th>Bairro</th> <th>Cidade</th> <th>UF</th> <th>CEP</th> </tr> </thead> <tbody> <?php if(count($this->enderecos)): foreach($this->enderecos as $endereco): ?> <tr> <td><?php echo $endereco['endereco']; ?></td> <td><?php echo $endereco['numero']; ?></td> <td><?php echo $endereco['complemento']; ?></td> <td><?php echo $endereco['bairro']; ?></td> <td><?php echo $endereco['cidade']; ?></td> <td><?php echo $endereco['uf']; ?></td> <td><?php echo $endereco['cep']; ?></td> </tr> <?php endforeach; endif; ?> </tbody> </table>
💾 保存文件
← 返回文件管理器