join_LastLogonIP.blade.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.关联用户:') }}{{$LastLogonIP ?? ""}}</h3>--}}
  26. <table class="table table-bordered">
  27. <thead>
  28. <tr>
  29. {{-- <th width="6%">IP</th>--}}
  30. <th width="6%">{{ __('auto.会员') }}ID</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. <th width="6%">{{ __('auto.总提现') }}</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. @foreach( $list as $k=>$v)
  41. <tr>
  42. {{-- <td>{{$v->LogonIP}}</td>--}}
  43. <td>
  44. <a href="/admin/global/id_find?UserID={{$v->UserID}}">
  45. {{$v->GameID}}
  46. </a>
  47. </td>
  48. <td>{{$v->NickName}}</td>
  49. <td>{{$v->Channel}}</td>
  50. <td>{{$v->RegisterDate}}</td>
  51. <td>{{$v->LastLogonDate}}</td>
  52. <td>{{$v->Recharge ?? 0}}</td>
  53. <td>{{($v->Withdraw ?? 0) / 100}}</td>
  54. </tr>
  55. @endforeach
  56. </tbody>
  57. </table>
  58. <div class="box-footer clearfix">
  59. {{ __('auto.总共') }} <b>{{ $list->appends([
  60. 'id'=>$id,
  61. 'UserID'=>$UserID ?? "",
  62. 'list' => $list
  63. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  64. {!! $list->links() !!}
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. @endsection