@props([ 'brand' => null, ]) @php $themeKey = config('app.theme'); $brand = $brand ?? config('domains.domains.'.$themeKey.'.brand', [ 'name' => 'businessportal', 'accent' => '24', 'tagline_short' => 'Pressemitteilungen · DACH', 'tagline_long' => 'Veröffentlichungs-Portal für redaktionell geprüfte Pressemitteilungen aus Deutschland, Österreich und der Schweiz.', 'footer_legal' => '© :year businessportal24 · Alle Rechte vorbehalten', 'about_label' => 'Über businessportal24', ]); $brandName = $brand['name'] ?? 'businessportal'; $brandAccent = $brand['accent'] ?? ''; $brandTagline = $brand['tagline_short'] ?? 'Pressemitteilungen · DACH'; $brandTaglineLong = $brand['tagline_long'] ?? 'Pressemitteilungen aus dem DACH-Raum.'; $aboutLabel = $brand['about_label'] ?? ('Über '.$brandName.$brandAccent); $legal = str_replace(':year', (string) now()->format('Y'), $brand['footer_legal'] ?? '© :year · Alle Rechte vorbehalten'); @endphp