{{-- 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 }}: Databases @endsection @section('content-header')

{{ $server->name }}Manage server databases.

@endsection @section('content') @include('admin.servers.partials.navigation')
Database passwords can be viewed when visiting this server on the front-end.

Active Databases

@foreach($server->databases as $database) @endforeach
Database Username Connections From Host
{{ $database->database }} {{ $database->username }} {{ $database->remote }} {{ $database->host->host }}:{{ $database->host->port }}

Create New Database

Select the host database server that this database should be created on.

s{{ $server->id }}_

This should reflect the IP address that connections are allowed from. Uses standard MySQL notation. If unsure leave as %.

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