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.2 KiB
28 lines
1.2 KiB
<!DOCTYPE html><html><head><title>友情链接列表_后台管理</title>@include('admin.common.header')
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<!-- 左边开始 --><div class="col-sm-3 col-md-2 sidebar">@include('admin.common.leftmenu')</div><!-- 左边结束 -->
|
|
|
|
<!-- 右边开始 --><div class="col-sm-9 col-md-10 rightbox"><div id="mainbox">
|
|
<h2 class="sub-header">友情链接管理</h2>[ <a href="/fladmin/friendlink/add">添加友情链接</a> ]<br><br>
|
|
|
|
<form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover">
|
|
<thead><tr>
|
|
<th>编号</th>
|
|
<th>链接名称</th>
|
|
<th>链接网址</th>
|
|
<th>管理</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<?php foreach($posts as $row){ ?><tr>
|
|
<td><?php echo $row->id; ?></td>
|
|
<td><?php echo $row->webname; ?></td>
|
|
<td><?php echo $row->url; ?></td>
|
|
<td><a href="/fladmin/friendlink/edit?id=<?php echo $row->id; ?>">修改</a> | <a onclick="delconfirm('/fladmin/friendlink/del?id=<?php echo $row->id; ?>')" href="javascript:;">删除</a></td>
|
|
</tr><?php } ?>
|
|
</tbody></table></div><!-- 表格结束 --></form><!-- 表单结束 -->
|
|
|
|
<div class="backpages">{{ $posts->links() }}</div>
|
|
|
|
</div></div><!-- 右边结束 --></div></div>
|
|
</body></html>
|