join_login_ip.blade.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <table class="table table-bordered">
  26. <thead>
  27. <tr>
  28. <th width="6%">{{ __('auto.会员') }}ID</th>
  29. <th width="6%">{{ __('auto.昵称') }}</th>
  30. <th width="6%">{{ __('auto.渠道') }}</th>
  31. <th width="6%">{{ __('auto.登录') }}IP</th>
  32. <th width="6%">{{ __('auto.最后登录日期') }}</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. @foreach( $list as $k=>$v)
  37. <tr>
  38. <td>
  39. <a href="/admin/global/id_find?UserID={{$v->UserID}}">
  40. {{$v->GameID}}
  41. </a>
  42. </td>
  43. <td>{{$v->NickName}}</td>
  44. <td>{{$v->Channel}}</td>
  45. <td>{{$v->LogonIP}}</td>
  46. <td>{{$v->LastDate}}</td>
  47. </tr>
  48. @endforeach
  49. </tbody>
  50. </table>
  51. <div class="box-footer clearfix">
  52. {{ __('auto.总共') }} <b>{{ $list->appends([
  53. 'UserID'=>$UserID,
  54. 'list' => $list,
  55. 'id' => $id
  56. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  57. {!! $list->links() !!}
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. @endsection