2
0

join_ip.blade.php 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.关联') }}IP
  12. </h3>
  13. <nav aria-label="breadcrumb">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="#">{{ __('auto.关联') }}IP</a></li>
  16. <li class="breadcrumb-item active" aria-current="page">{{ __('auto.关联') }}IP</li>
  17. </ol>
  18. </nav>
  19. </div>
  20. <div class="row">
  21. <div class="col-lg-12 grid-margin stretch-card">
  22. <div class="card">
  23. <div class="card-body">
  24. <a href="javascript:history.back(-1)">{{ __('auto.返回上一页') }}</a>
  25. <h3 class="card-title">{{ __('auto.关联IP:') }}{{$ip ?? ""}}</h3>
  26. <table class="table table-bordered">
  27. <thead>
  28. <tr>
  29. <th width="6%">{{ __('auto.会员') }}ID</th>
  30. <th width="6%">{{ __('auto.昵称') }}</th>
  31. <th width="6%">{{ __('auto.渠道') }}</th>
  32. <th width="6%">{{ __('auto.注册日期') }}</th>
  33. <th width="6%">{{ __('auto.最后登录日期') }}</th>
  34. <th width="6%">{{ __('auto.总充值') }}</th>
  35. <th width="6%">{{ __('auto.总提现') }}</th>
  36. </tr>
  37. </thead>
  38. <tbody>
  39. @foreach( $list as $k=>$v)
  40. <tr>
  41. <td>
  42. <a href="/admin/global/id_find?UserID={{$v->UserID}}">
  43. {{$v->GameID}}
  44. </a>
  45. </td>
  46. <td>{{$v->NickName}}</td>
  47. <td>{{$v->Channel}}</td>
  48. <td>{{$v->RegisterDate}}</td>
  49. <td>{{$v->LastLogonDate}}</td>
  50. <td>{{$v->Recharge ?? 0}}</td>
  51. <td>{{($v->Withdraw ?? 0) / 100}}</td>
  52. </tr>
  53. @endforeach
  54. </tbody>
  55. </table>
  56. <div class="box-footer clearfix">
  57. {{ __('auto.总共') }} <b>{{ $list->appends([
  58. 'list' => $list,
  59. 'id'=>$id,
  60. 'RegisterIP'=>$ip
  61. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  62. {!! $list->links() !!}
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. @endsection