| {{ $user->id }} |
{{ $user->username }} |
{{ $user->port }} |
@if ($user->status > 0)
{{ trans('common.status.normal') }}
@elseif ($user->status < 0)
{{ trans('common.status.banned') }}
@else
{{ trans('common.status.inactive') }}
@endif
|
@if ($user->enable)
{{ trans('common.status.enabled') }}
@else
{{ trans('common.status.banned') }}
@endif
|
@if ($user->onlineIPList->isNotEmpty())
| {{ trans('model.node.attribute') }} |
{{ trans('model.ip.network_type') }} |
IP |
{{ ucfirst(trans('validation.attributes.time')) }} |
@foreach ($user->onlineIPList as $log)
| {{ $log->node->name ?? '【' . trans('common.deleted_item', ['attribute' => trans('model.node.attribute')]) . '】' }}
|
{{ $log->type }} |
{{ $log->ip }}
|
{{ date('Y-m-d H:i:s', $log->created_at) }} |
@endforeach
@endif
|
@endforeach