{{-- 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') {{ $node->name }}: Allocations @endsection @section('content-header')

{{ $node->name }}Control allocations available for servers on this node.

@endsection @section('content')

Existing Allocations

@foreach($node->allocations as $allocation) @endforeach
IP Address IP Alias Port Assigned To
{{ $allocation->ip }} {{ $allocation->port }} @if(! is_null($allocation->server)) {{ $allocation->server->name }} @endif @if(is_null($allocation->server_id)) @else @endif
@if($node->allocations->hasPages()) @endif

Assign New Allocations

Enter an IP address to assign ports to here.

If you would like to assign a default alias to these allocations enter it here.

Enter individual ports or port ranges here separated by commas or spaces.

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