history.blade.php 920 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('admin.public.base')
  2. @section('body_class')
  3. style="margin: 0 auto;width: 96%;padding: 30px 0px;"
  4. @endsection
  5. @section('content')
  6. <div class="row">
  7. <div class="col-xs-12">
  8. <div class="table-responsive">
  9. <table class="table table-striped table-bordered table-hover">
  10. <thead>
  11. <tr>
  12. <th>记录ID</th>
  13. <th>备注信息</th>
  14. <th>操作时间</th>
  15. <th>操作人昵称</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. @foreach ($list as $a)
  20. <tr>
  21. <td>{{$a['ua_id']}}</td>
  22. <td>{{$a['info']}}</td>
  23. <td>{{date('Y-m-d H:i:s',$a['add_time'])}}</td>
  24. <td>{{$a['uname']}}</td>
  25. </tr>
  26. @endforeach
  27. <tr>
  28. <td colspan="20" class="page">{{$list->render()}}</td>
  29. </tr>
  30. <tr>
  31. <td colspan="20">总计 {{$list->total()}} 条记录</td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. </div>
  38. @endsection