{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.admin') @section('title') Server — {{ $server->name }} @endsection @section('content-header')

{{ $server->name }}{{ $server->uuid }}

@endsection @section('content')

Information

UUID {{ $server->uuid }}
Docker Container ID
Docker User ID
Docker Container Name {{ $server->username }}
Service {{ $server->nest->name }} :: {{ $server->egg->name }}
Name {{ $server->name }}
Memory {{ $server->memory }}MB / {{ $server->swap }}MB
OOM Killer {!! ($server->oom_disabled === 0) ? 'Enabled' : 'Disabled' !!}
Disk Space {{ $server->disk }}MB
Block IO Weight {{ $server->io }}
CPU Limit {{ $server->cpu }}%
Default Connection {{ $server->allocation->ip }}:{{ $server->allocation->port }}
Connection Alias @if($server->allocation->alias !== $server->allocation->ip) {{ $server->allocation->alias }}:{{ $server->allocation->port }} @else No Alias Assigned @endif
@if($server->suspended)

Suspended

@endif @if($server->installed !== 1)

{{ (! $server->installed) ? 'Installing' : 'Install Failed' }}

@endif

{{ str_limit($server->user->username, 8) }}

Server Owner

More info

{{ str_limit($server->node->name, 8) }}

Server Node

More info
@endsection @section('footer-scripts') @parent @endsection