index.blade.php 721 B

12345678910111213141516171819202122232425262728293031323334353637
  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. <form action="" method="get" class="form-horizontal form-line">
  7. </form>
  8. <div class="row">
  9. <div class="col-xs-12">
  10. <div class="table-responsive">
  11. <table class="table table-striped table-bordered table-hover">
  12. <thead>
  13. <tr>
  14. <th>成员ID</th>
  15. <th>成员名称</th>
  16. <th>操作</th>
  17. </thead>
  18. <tbody>
  19. @foreach ($list as $a)
  20. <tr>
  21. <th>{{$a['userid']}}</th>
  22. <td>{{$a['name']}}</td>
  23. <td>
  24. </td>
  25. </tr>
  26. @endforeach
  27. </tbody>
  28. </table>
  29. </div>
  30. </div>
  31. </div>
  32. @endsection