@if ($logo = Theme::getLogo())
{{ Theme::getLogoImage() }}
@endif @if(is_plugin_active('blog'))
@endif
{{ __('Menu') }}
@if (is_plugin_active('language') && count(Language::getSupportedLocales()) > 1)
{{ __('Language') }}
    {!! Theme::partial('language-switcher') !!}
@endif @if (theme_option('social_links') && $socialLinks = json_decode(theme_option('social_links'), true))
    @foreach ($socialLinks as $social) @php($social = collect($social)->pluck('value', 'key'))
  • @if($social->get('social-icon-image')) {{ RvMedia::image($social->get('social-icon-image'), 'icon', attributes: ['width' => 18, 'height' => 18, 'style' => 'vertical-align: top; margin-top: 1px;']) }} @elseif($social->get('social-icon')) {!! BaseHelper::renderIcon($social->get('social-icon')) !!} @endif
  • @endforeach
@endif