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.

35 lines
1.3 KiB

7 years ago
  1. @extends('admin.layouts.app')
  2. @section('title', '快递列表')
  3. @section('content')
  4. <h2 class="sub-header">快递管理</h2>[ <a href="<?php echo route('admin_kuaidi_add'); ?>">添加快递</a> ]<br><br>
  5. <form name="listarc"><div class="table-responsive"><table class="table table-hover">
  6. <thead><tr class="info">
  7. <th>ID</th>
  8. <th>快递名称</th>
  9. <th>编码</th>
  10. <th>金额</th>
  11. <th>说明</th>
  12. <th>电话</th>
  13. <th>官网</th>
  14. <th>排序</th>
  15. <th>是否显示</th>
  16. <th>管理</th>
  17. </tr></thead>
  18. <tbody>
  19. <?php if($posts){foreach($posts as $row){ ?><tr>
  20. <td><?php echo $row->id; ?></td>
  21. <td><?php echo $row->name; ?></td>
  22. <td><?php echo $row->code; ?></td>
  23. <td><?php echo $row->money; ?></td>
  24. <td><?php echo $row->des; ?></td>
  25. <td><?php echo $row->tel; ?></td>
  26. <td><?php echo $row->website; ?></td>
  27. <td><?php echo $row->listorder; ?></td>
  28. <td><?php if($row->status==0){echo "";}else{echo "<font color=red>否</font>";} ?></td>
  29. <td><a href="<?php echo route('admin_kuaidi_edit',array('id'=>$row->id)); ?>">修改</a> | <a onclick="delconfirm('<?php echo route('admin_kuaidi_del',array('id'=>$row->id)); ?>')" href="javascript:;">删除</a></td>
  30. </tr><?php }} ?>
  31. </tbody></table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  32. <nav aria-label="Page navigation">{{ $posts->links() }}</nav>
  33. @endsection