{{-- DE/EN language switch (R16). Plain links → full reload so the whole UI re-renders in the chosen language; persists per-user + session via the locale route. --}} @php $current = app()->getLocale(); @endphp
@foreach (['de' => 'DE', 'en' => 'EN'] as $code => $abbr) $current === $code, 'text-ink-4 hover:text-ink-2' => $current !== $code, ]) aria-current="{{ $current === $code ? 'true' : 'false' }}" title="{{ $code === 'de' ? 'Deutsch' : 'English' }}">{{ $abbr }} @endforeach