Databases - {{ $account->username }} Databases
@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif

Create New Database

@csrf
{{ substr($account->username, 0, 8) }}_

Your Databases

@if($account->databases->count()) @foreach($account->databases as $database) @endforeach
Database Name Username Host Actions
{{ $database->name }} {{ $database->username }} {{ $database->host }}
@if($phpMyAdminUrl) phpMyAdmin @endif
@else

No databases yet. Create one above.

@endif

Connection Information

Host

localhost

Port

3306

External Access

Not available (localhost only)

phpMyAdmin

@if($phpMyAdminUrl) Open phpMyAdmin

Use your database username and password to log in.

@else

phpMyAdmin is not configured for this server.

@endif
@push('scripts') @endpush