{{ __('installer::installer.environment_title') }}

{{ __('installer::installer.environment_subtitle') }}

@if(($state['connection'] ?? 'mysql') !== 'sqlite')
@endif

{{ __('installer::installer.environment_database_hint') }}

@if(($state['connection'] ?? 'mysql') !== 'sqlite')
@endif @foreach(config('installer.environment_fields', []) as $envKey => $fieldConfig) @php $stateKey = $fieldConfig['state_key'] ?? strtolower($envKey); $type = $fieldConfig['type'] ?? 'text'; $label = $fieldConfig['label'] ?? $envKey; $description = $fieldConfig['description'] ?? null; @endphp @if($type === 'checkbox')
@elseif($type === 'select')
@if($description)

{{ $description }}

@endif
@else
@if($description)

{{ $description }}

@endif
@endif @endforeach