@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 (count($userFooterQuickLinks) > 0)

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

    @foreach ($userFooterQuickLinks as $quickLinkInfo)
  • {{ convertUtf8($quickLinkInfo->title) }}
  • @endforeach
@endif @if (isset($userContact))

{{ $keywords['Contact_Us'] ?? 'Contact Us' }}

@php $phone_numbers = !empty($userContact->contact_numbers) ? explode(',', $userContact->contact_numbers) : []; $emails = !empty($userContact->contact_mails) ? explode(',', $userContact->contact_mails) : []; $addresses = !empty($userContact->contact_addresses) ? explode(PHP_EOL, $userContact->contact_addresses) : []; @endphp @if (count($addresses) > 0) @foreach ($addresses as $address)

{{ $address }}

@endforeach @endif @if (count($emails) > 0)

@foreach ($emails as $email) {{ $email }}{{ !$loop->last ? ', ' : '' }} @endforeach

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

@foreach ($phone_numbers as $phone_number) {{ $phone_number }}{{ !$loop->last ? ', ' : '' }} @endforeach

@endif
@endif
@endif @if (isset($home_sections->copyright_section) && $home_sections->copyright_section == 1)

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

@endif