level.blade.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @extends('layouts.base')
  2. @section('content')
  3. @section('title', trans('升级等级条件记录'))
  4. <style>
  5. .table>tbody>tr>td{
  6. padding: 10px;
  7. }
  8. </style>
  9. <section class="content">
  10. <div class="right-titpos">
  11. <ul class="add-snav">
  12. <li class="active"><a href="">升级等级条件记录</a></li>
  13. </ul>
  14. </div>
  15. <form action="" method="post" onsubmit="return formcheck(this)">
  16. <div class='panel panel-default'>
  17. <div class='panel-body'>
  18. <div class="table-responsive ">
  19. <table class="table table-hover">
  20. <thead>
  21. <tr>
  22. <th style="width: 10%">记录ID</th>
  23. <th style="width: 10%;">升级条件</th>
  24. <th style="width: 10%">创建时间</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. @foreach($list['data'] as $row)
  29. <tr>
  30. <td >{{$row['id']}}</td>
  31. <td >{{$row['remarks']}}</td>
  32. <td >
  33. {{$row['created_at']}}
  34. </td>
  35. </tr>
  36. @endforeach
  37. </tbody>
  38. </table>
  39. </div>
  40. </div>
  41. {!! $pager !!}
  42. </div>
  43. </form>
  44. </section><!-- /.content -->
  45. @endsection