| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @extends('base.base')
- @section('base')
- <!-- 内容区域 -->
- <div class="main-panel">
- <div class="content-wrapper">
- <div class="page-header">
- <h3 class="page-title">
- <span class="page-title-icon bg-gradient-primary text-white mr-2">
- <i class="mdi mdi-settings"></i>
- </span>
- {{ __('auto.登录IP记录') }}
- </h3>
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#">{{ __('auto.登录IP记录') }}</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ __('auto.登录IP记录') }}</li>
- </ol>
- </nav>
- </div>
- <div class="row">
- <div class="col-lg-12 grid-margin stretch-card">
- <div class="card">
- <div class="card-body">
- <a href="javascript:history.back(-1)">{{ __('auto.返回上一页') }}</a>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="6%">{{ __('auto.会员') }}ID</th>
- <th width="6%">{{ __('auto.昵称') }}</th>
- <th width="6%">{{ __('auto.渠道') }}</th>
- <th width="6%">{{ __('auto.登录') }}IP</th>
- <th width="6%">{{ __('auto.最后登录日期') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach( $list as $k=>$v)
- <tr>
- <td>
- <a href="/admin/global/id_find?UserID={{$v->UserID}}">
- {{$v->GameID}}
- </a>
- </td>
- <td>{{$v->NickName}}</td>
- <td>{{$v->Channel}}</td>
- <td>{{$v->LogonIP}}</td>
- <td>{{$v->LastDate}}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix">
- {{ __('auto.总共') }} <b>{{ $list->appends([
- 'UserID'=>$UserID,
- 'list' => $list,
- 'id' => $id
- ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|