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.

25 lines
1.0 KiB

7 years ago
  1. @extends('admin.layouts.app')
  2. @section('title', '账户记录列表')
  3. @section('content')
  4. <h2 class="sub-header">账户记录列表</h2>
  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. </tr></thead>
  13. <tbody>
  14. <?php if($posts){foreach($posts as $row){ ?><tr>
  15. <td><?php echo $row->id; ?></td>
  16. <td><a href="<?php echo route('admin_user_money',array('user_id'=>$row->user_id)); ?>"><?php if($row->user->user_name){echo $row->user->user_name;}else{echo $row->user->mobile;} ?></a></td>
  17. <td><font<?php if($row->type==1){echo ' color="#0C0"';}else{echo ' color="red"';} ?>><?php if($row->type==1){echo '-';} ?><?php echo $row->money; ?></font></td>
  18. <td><?php echo $row->des; ?></td>
  19. <td><?php echo date('Y-m-d H:i:s',$row->add_time); ?></td>
  20. </tr><?php }} ?>
  21. </tbody></table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  22. <nav aria-label="Page navigation">{{ $posts->links() }}</nav>
  23. @endsection