history.blade.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @extends('base.base')
  2. @section('base')
  3. <!-- 内容区域 -->
  4. <div class="main-panel">
  5. <div class="content-wrapper">
  6. <div class="page-header">
  7. <h3 class="page-title">
  8. <span class="page-title-icon bg-gradient-primary text-white mr-2">
  9. <i class="mdi mdi-settings"></i>
  10. </span>
  11. {{ __('auto.黑名单记录') }}
  12. </h3>
  13. <nav aria-label="breadcrumb">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="#">{{ __('auto.用户控制') }}</a></li>
  16. <li class="breadcrumb-item">{{ __('auto.黑名单列表') }}</li>
  17. <li class="breadcrumb-item active" aria-current="page">{{ __('auto.黑名单记录') }}</li>
  18. </ol>
  19. </nav>
  20. </div>
  21. <div class="row">
  22. <div class="col-lg-12 grid-margin stretch-card">
  23. <div class="card">
  24. <div class="card-body">
  25. <h4 class="card-title">{{ __('auto.黑名单记录') }}</h4>
  26. <table class="table table-bordered">
  27. <thead>
  28. <tr>
  29. <th>{{ __('auto.会员') }}ID</th>
  30. <th>{{ __('auto.昵称') }}</th>
  31. <th>{{ __('auto.渠道') }}</th>
  32. <th>{{ __('auto.解除黑名单时间') }}({{ __('auto.中国') }})</th>
  33. <th>{{ __('auto.操作人') }}</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. @foreach($list as $k=>$v)
  38. <tr>
  39. <td><a href="/admin/global/id_find?UserID={{$v->UserID}}">
  40. {{ $v->GameID }}
  41. </a></td>
  42. <td>{{ $v->accountsInfo->NickName }}</td>
  43. <td>{{ $v->accountsInfo->Channel }}</td>
  44. <td>{{ $v->draw_base }}</td>
  45. <td>{{ $v->admin->nickname }}</td>
  46. </tr>
  47. @endforeach
  48. </tbody>
  49. </table>
  50. <div class="box-footer clearfix">
  51. {{ __('auto.总共') }} <b>{{ $list->appends($request->all())->total() }}</b> {{ __('auto.条') }},
  52. {{ __('auto.分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }} {!! $list->links() !!}
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. @endsection