@extends('layouts.app') @php $reg = new \App\Support\SubdomainRegistry(); $en = $reg->currentLocale() === 'en'; $t = fn ($de, $enT) => $en ? $enT : $de; $titles = [ 'full' => $t('Große Umfrage', 'Full survey'), 'problem' => $t('Problem schildern', 'Report a problem'), 'quick' => $t('Kurzumfrage', 'Quick survey'), 'ideas' => $t('App-Ideen bewerten', 'Rate app ideas'), ]; $title = $titles[$variant ?? 'full'] ?? $t('Umfrage', 'Survey'); @endphp @section('title', $title . ' — ProblemRadar') @section('robots', 'noindex,follow') @section('content') @include('umfrage._shell')
{{ $t('In Arbeit', 'In progress') }}

{{ $title }}

{{ $t('Dieser Bereich wird gerade gebaut und ist in Kürze verfügbar. In der Zwischenzeit hilft die große Umfrage am meisten.', 'This section is being built and will be available shortly. In the meantime, the full survey helps most.') }}

@endsection