{{-- 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') Service → {{ $service->name }} @endsection @section('content-header')

{{ $service->name }}{{ str_limit($service->description, 50) }}

@endsection @section('content')

This should be a descriptive category name that emcompasses all of the options within the service.

Service are downloaded by the daemon and stored in a folder using this name. The storage location is /srv/daemon/services/{NAME} by default.

The default start command to use when running options under this service. This command can be modified per-option and should include the executable to be called in the container.

Configured Options

@foreach($service->options as $option) @endforeach
Name Description Tag Servers
{{ $option->name }} {!! $option->description !!} {{ $option->tag }} {{ $option->servers->count() }}
@endsection @section('footer-scripts') @parent @endsection