You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
746 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. @extends('admin.layouts.app')
  2. @section('title', '重复文档列表')
  3. @section('content')
  4. <h2 class="sub-header">重复文档列表</h2>[ <a href="/fladmin/article">文章列表</a> ] [ <a href="/fladmin/article/add">发布文章</a> ]<br><br>
  5. <form name="listarc">
  6. <div class="table-responsive"><table class="table table-striped table-hover">
  7. <thead><tr>
  8. <th>文档标题</th>
  9. <th>重复数量</th>
  10. </tr></thead>
  11. <tbody>
  12. <?php if($posts){ foreach ($posts as $row) { ?>
  13. <tr>
  14. <td><a href="/fladmin/article/index?typeid=0&keyword=<?php echo $row["title"]; ?>"><?php echo $row["title"]; ?></a></td>
  15. <td><?php echo $row["count"]; ?></td>
  16. </tr>
  17. <?php }} ?>
  18. </tbody>
  19. </table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  20. @endsection