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

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

@endif
@if (count($userFooterQuickLinks) > 0)

{{ $keywords['Useful_Links'] ?? 'Useful Links' }}

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

{{ $keywords['Latest_Blogs'] ?? __('Latest Blogs') }}

@foreach ($userFooterRecentBlogs as $footerBlogInfo)
image
{{ 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