@extends('admin.settings.sidebar') @section('title', __('admin.database.title')) @section('setting')

{{ __('admin.database.title') }}

{{ __('admin.database.description') }}

@if (app('license')->getLicense()->getServer() != null)
{{ __('admin.database.pmaaccess') }}
@endif
@csrf

{{ __('admin.database.migrateextension') }}

@include('admin/shared/select', ['label' => null, 'options' => $extensions, 'name' => 'extension', 'value' => null])
@if (app('license')->getLicense()->getServer() != "local")
  • {{ __('admin.database.host') }} : ctx-{{ app('license')->getLicense()->getServer() }}.clientxcms.com
  • {{ __('admin.database.port') }} : {{ $_ENV['DB_PORT'] }}
  • {{ __('admin.database.username') }} : {{ $_ENV['DB_USERNAME'] }}
  • {{ __('admin.database.password') }} :
    {{ $_ENV['DB_PASSWORD'] }}
@endif
@if($output = Session::get('output'))

{{ __('admin.database.output') }}

{{ $output }}
@endif @endsection