| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @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-wrench"></i>
- </span>
- {{ __('auto.后台账号登录管理IP管理') }}
- </h3>
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#">{{ __('auto.系统设置') }}</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">
- <h4 class="card-title">{{ __('auto.后台账号登录管理IP管理') }}</h4>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>{{ __('auto.最后一次登录时间') }}</th>
- <th>{{ __('auto.昵称') }}</th>
- <th>{{ __('auto.账号') }}</th>
- <th>IP</th>
- <th>IP{{ __('auto.所在地址') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- <tr>
- <td>{{ $v->last_login_time }}</td>
- <td>{{ $v->nickname }}</td>
- <td>{{ $v->account }}</td>
- <td>{{ $v->ip }}</td>
- <td>{{ $v->ip_address }}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix" id = "pages">
- {{ __('auto.总共') }} <b>{{ $list->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function add(){
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.添加IP白名单') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['70%', '90%'],
- content: '/admin/IpWhiteList/add'
- });
- }
- function update(id){
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.修改IP白名单') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['70%', '90%'],
- content: '/admin/IpWhiteList/update/'+id
- });
- }
- function del(id){
- myConfirm("{{ __('auto.删除操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/IpWhiteList/del/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- </script>
- @endsection
|