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.
22 lines
746 B
22 lines
746 B
@extends('admin.layouts.app')
|
|
@section('title', '重复文档列表')
|
|
|
|
@section('content')
|
|
<h2 class="sub-header">重复文档列表</h2>[ <a href="/fladmin/article">文章列表</a> ] [ <a href="/fladmin/article/add">发布文章</a> ]<br><br>
|
|
|
|
<form name="listarc">
|
|
<div class="table-responsive"><table class="table table-striped table-hover">
|
|
<thead><tr>
|
|
<th>文档标题</th>
|
|
<th>重复数量</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<?php if($posts){ foreach ($posts as $row) { ?>
|
|
<tr>
|
|
<td><a href="/fladmin/article/index?typeid=0&keyword=<?php echo $row["title"]; ?>"><?php echo $row["title"]; ?></a></td>
|
|
<td><?php echo $row["count"]; ?></td>
|
|
</tr>
|
|
<?php }} ?>
|
|
</tbody>
|
|
</table></div><!-- 表格结束 --></form><!-- 表单结束 -->
|
|
@endsection
|