@if ($logoImage = Arr::get($config, 'logo'))
{{ Theme::getLogoImage(logoUrl: $logoImage) }}
@elseif ($title = Arr::get($config, 'title'))

{!! BaseHelper::clean($title) !!}

@endif
@if ($description = Arr::get($config, 'description'))

{!! BaseHelper::clean($description) !!}

@endif

    @if ($address = Arr::get($config, 'address'))
  • {!! BaseHelper::clean($address) !!}

  • @endif @if ($hotline = Arr::get($config, 'hotline'))
  • {{ $hotline }}
  • @endif @if ($openingHours = Arr::get($config, 'opening_hours'))
  • {!! BaseHelper::clean(nl2br($openingHours)) !!}

  • @endif
@if ($description = Arr::get($config, 'with_social_links', 'no') == 'yes' && theme_option('social_links'))
    @include(Theme::getThemeNamespace('widgets.social-links.templates.partials.social-links'))
@endif