@if ($database->human_name)

{{ Str::headline($database->human_name) }}

@else

{{ Str::headline($database->name) }}

@endif Save @can('update', $database) @endcan @can('delete', $database) @endcan
@if ($db_url_public) @endif

Advanced

@php $dbType = $database->databaseType(); $supportedTypes = ['mysql', 'mariadb', 'postgres', 'mongo']; $isSupported = collect($supportedTypes)->contains(fn($type) => str_contains($dbType, $type)); @endphp @if ($isSupported) @can('update', $database)

Import Backup

@endcan @endif