join_LastLogonIP.blade.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. </tr>
  36. </thead>
  37. <tbody>
  38. @foreach( $list as $k=>$v)
  39. <tr>
  40. {{-- <td>{{$v->LogonIP}}</td>--}}
  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. </tr>
  51. @endforeach
  52. </tbody>
  53. </table>
  54. <div class="box-footer clearfix">
  55. {{ __('auto.总共') }} <b>{{ $list->appends([
  56. 'id'=>$id,
  57. 'UserID'=>$UserID ?? "",
  58. 'list' => $list
  59. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  60. {!! $list->links() !!}
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. @endsection