@extends('layouts.admin') @section('title') Server — {{ $server->name }}: Manage @endsection @section('content-header')

{{ $server->name }}Additional actions to control this server.

@endsection @section('content') @include('admin.servers.partials.navigation')

Reinstall Server

This will reinstall the server with the assigned service scripts. Danger! This could overwrite server data.

Install Status

If you need to change the install status from uninstalled to installed, or vice versa, you may do so with the button below.

@if(! $server->isSuspended())

Suspend Server

This will suspend the server, stop any running processes, and immediately block the user from being able to access their files or otherwise manage the server through the panel or API.

@else

Unsuspend Server

This will unsuspend the server and restore normal user access.

@endif @if(is_null($server->transfer))

Transfer Server

Transfer this server to another node connected to this panel. Warning! This feature has not been fully tested and may have bugs.

@else

Transfer Server

This server is currently being transferred to another node. Transfer was initiated at {{ $server->transfer->created_at }}

@endif
@endsection @section('footer-scripts') @parent {!! Theme::js('vendor/lodash/lodash.js') !!} @if($canTransfer) {!! Theme::js('js/admin/server/transfer.js') !!} @endif @endsection