@if ($logo = Arr::get($config, 'logo'))
{{ theme_option('site_title') }}
@endif @if ($address = Arr::get($config, 'address'))

{!! BaseHelper::clean(nl2br($address)) !!}

@endif @if ((! empty($config['working_hours_start']) && !empty($config['working_hours_end'])) || ! empty($config['working_hours']))
{{ __('Working hours') }}: @if (! empty($config['working_hours_start']) && !empty($config['working_hours_end'])) {{ $config['working_hours_start'] }} - {{ $config['working_hours_end'] }} @else {!! BaseHelper::clean(nl2br($config['working_hours'])) !!} @endif
@endif @if ($socialLinks = json_decode(theme_option('social_links')))
{{ __('Follow Us') }}
@foreach($socialLinks as $social) @php($social = collect($social)->pluck('value', 'key')) @if ($socialIcon = $social->get('social-icon')) {{ $social->get('social-name') }} @else {{ $social->get('social-name') }} @endif @endforeach
@endif