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.

27 lines
1.2 KiB

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/slide/add">添加轮播图</a> ]<br><br>
  5. <form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover">
  6. <thead><tr>
  7. <th>图片</th>
  8. <th>标题</th>
  9. <th>链接网址</th>
  10. <th>排序</th>
  11. <th>是否显示</th>
  12. <th>管理</th>
  13. </tr></thead>
  14. <tbody>
  15. <?php if($posts){foreach($posts as $row){ ?><tr>
  16. <td><img style="<?php if(empty($row->pic) || !imgmatch($row->pic)){ echo "display:none;"; } ?>" src="<?php if(imgmatch($row->pic)){echo $row->pic;} ?>" width="90" height="60"></td>
  17. <td><?php echo $row->title; ?></td>
  18. <td><?php echo $row->url; ?></td>
  19. <td><?php echo $row->rank; ?></td>
  20. <td><?php if($row->is_show==0){echo "";}else{echo "<font color=red>否</font>";} ?></td>
  21. <td><a href="/fladmin/slide/edit?id=<?php echo $row->id; ?>">修改</a> | <a onclick="delconfirm('/fladmin/slide/del?id=<?php echo $row->id; ?>')" href="javascript:;">删除</a></td>
  22. </tr><?php }} ?>
  23. </tbody></table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  24. <nav aria-label="Page navigation">{{ $posts->links() }}</nav>
  25. @endsection