{{-- 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') List Servers @endsection @section('content-header')

ServersAll servers available on the system.

@endsection @section('content')

Server List

@foreach ($servers as $server) @endforeach
Server Name UUID Owner Node Connection
{{ $server->name }} {{ $server->uuid }} {{ $server->user->username }} {{ $server->node->name }} {{ $server->allocation->alias }}:{{ $server->allocation->port }} @if($server->suspended) Suspended @elseif(! $server->installed) Installing @else Active @endif
@if($servers->hasPages()) @endif
@endsection @section('footer-scripts') @parent @endsection