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.

28 lines
1.1 KiB

7 years ago
7 years ago
7 years ago
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/searchword/add">增加关键词</a> ]<br><br>
  5. <form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover">
  6. <thead>
  7. <tr>
  8. <th>编号</th>
  9. <th>名称</th>
  10. <th>更新时间</th>
  11. <th>管理</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <?php foreach($posts as $row){ ?>
  16. <tr>
  17. <td><?php echo $row->id; ?></td>
  18. <td><a href="/fladmin/searchword/edit?id=<?php echo $row->id; ?>"><?php echo $row->name; ?></a></td>
  19. <td><?php echo date('Y-m-d',$row->pubdate); ?></td>
  20. <td><a target="_blank" href="<?php echo get_front_url(array("type"=>"search","searchid"=>$row->id)); ?>">预览</a>&nbsp;<a href="/fladmin/searchword/edit?id=<?php echo $row->id; ?>">修改</a>&nbsp;<a onclick="delconfirm('/fladmin/searchword/del?id=<?php echo $row->id; ?>')" href="javascript:;">删除</a></td>
  21. </tr>
  22. <?php } ?>
  23. </tbody>
  24. </table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  25. <nav aria-label="Page navigation">{{ $posts->links() }}</nav>
  26. @endsection