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

在线IP监控 实时

重置
@if ($list->isEmpty()) @else @foreach($list as $vo) @endforeach @endif
# 时间 类型 节点 用户 地址 IP 归属地
暂无数据
{{$vo->id}} {{$vo->created_at}} {{$vo->type}} {{$vo->node ? $vo->node->name : '【节点已删除】'}} {{$vo->user ? $vo->user->username : '【用户已删除】'}} {{$vo->user ? $vo->user->address : '【用户已删除】'}} @if (strpos($vo->ip, ',') == TRUE) @foreach (explode(',', $vo->ip) as $ip) {{$ip}} @endforeach @else {{$vo->ip}} @endif {{strpos($vo->ip, ',') == TRUE? '':$vo->ipInfo}}
@endsection @section('script') @endsection