@if (isset($home_sections->top_footer_section) && $home_sections->top_footer_section == 1)
@if (isset($userFooterData->logo))
footer logo
@endif @if (!empty($userFooterData->about_company))

{!! replaceBaseUrl($userFooterData->about_company) ?? null !!}

@endif @if (isset($social_medias))
    @foreach ($social_medias as $social_media)
  • @endforeach
@endif
@if (count($userFooterQuickLinks) > 0)

{{ $keywords['Quick_Links'] ?? 'Quick Links' }}

    @foreach ($userFooterQuickLinks as $quickLinkInfo)
  • {{ convertUtf8($quickLinkInfo->title) }}
  • @endforeach
@endif @if (count($userFooterRecentBlogs) > 0)

{{ $keywords['Recent_Blogs'] ?? __('Recent Blogs') }}

    @foreach ($userFooterRecentBlogs as $footerBlogInfo)
  • {{ strlen($footerBlogInfo->title) > 40 ? mb_substr($footerBlogInfo->title, 0, 40, 'UTF-8') . '...' : $footerBlogInfo->title }}
    {{ date_format($footerBlogInfo->created_at, 'F d, Y') }}
  • @endforeach
@endif
@endif @if (isset($home_sections->copyright_section) && $home_sections->copyright_section == 1)

{!! replaceBaseUrl($userFooterData->copyright_text ?? null) !!}

@endif