✏️ 正在编辑: link-rota-table.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/rota/link-rota-table.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Links</h1> <div id="view-content"> <table class="table-container"> <thead> <tr class="top_list"> <td>Rota</td> <td>Url</td> <td align="center">Copiar</td> </tr> </thead> <tbody> <?php use Carbon\Carbon; ?> <?php if (is_iterable($this->tokens)): ?> <?php foreach ($this->tokens as $token): ?> <?php $link = domain('/public/corretor-cadastro-site/form/t/' . $token['token']); ?> <tr> <td><?php echo $token['rota']; ?></td> <td><?php echo $link ?></td> <td align="center"> <a class="link_copy" onclick="execCopy('<?php echo $link; ?>')"></a> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器