@extends('admin.layouts') @section('css') @endsection @section('content')

用户在线IP列表 最近10分钟

重置
@if ($userList->isEmpty()) @else @foreach ($userList as $user) @endforeach @endif
# 用户名 端口 状态 代理 连接IP
暂无数据
{{$user->id}} {{$user->username}} {{$user->port}} @if ($user->status > 0) 正常 @elseif ($user->status < 0) 禁用 @else 未激活 @endif @if ($user->enable) 启用 @else 禁用 @endif @if(!$user->onlineIPList->isEmpty()) @foreach($user->onlineIPList as $vo) @endforeach
时间 节点 类型 IP
{{$vo->created_at}} {{$vo->node ? $vo->node->name : '【节点已删除】'}} {{$vo->type}} {{$vo->ip}}
@endif
@endsection @section('script') @endsection