General

Save
If you change the values in the database, please sync it here, otherwise automations (like backups) won't work.
@if ($database->started_at)
@else
@endif

Network

@if ($db_url_public) @endif

SSL Configuration

@if($database->enable_ssl) @php $cert = \App\Models\SslCertificate::where('resource_type', $database->getMorphClass()) ->where('resource_id', $database->id) ->first(); @endphp @if($cert) Valid until: @if(now()->gt($cert->valid_until)) {{ $cert->valid_until->format('d.m.Y H:i:s') }} - Expired @elseif(now()->addDays(30)->gt($cert->valid_until)) {{ $cert->valid_until->format('d.m.Y H:i:s') }} - Expiring soon @else {{ $cert->valid_until->format('d.m.Y H:i:s') }} @endif @endif @endif
@if($database->enable_ssl) @endif
@if($database->enable_ssl) @endif

Proxy

@if (data_get($database, 'is_public')) Proxy Logs Logs @endif

Advanced

Initialization scripts

Save
@forelse(data_get($database,'init_scripts', []) as $script) @empty
No initialization scripts found.
@endforelse