Footer Logo

{{ $footerSubtitle->value ?? '' }}

@if (isset($socialLinks) && is_array($socialLinks)) @foreach ($socialLinks as $item) @php $item = (object) $item; @endphp @if (!empty($item->url)) @endif @endforeach @endif
App Store Play Store
@php $activeCardsCount = count($footerMenuCards); $colClass = 'col-xl-3 col-lg-3 col-md-6'; // Default 4 columns // Dynamic column width based on active cards if ($activeCardsCount == 3) { $colClass = 'col-xl-4 col-lg-4 col-md-4'; } elseif ($activeCardsCount == 2) { $colClass = 'col-xl-6 col-lg-6 col-md-6'; } elseif ($activeCardsCount == 1) { $colClass = 'col-xl-12 col-lg-12 col-md-12'; } @endphp @if (isset($footerMenuCards) && count($footerMenuCards) > 0) @foreach ($footerMenuCards as $card)

{{ $card['label'] }}

@if ($card['id'] === 'footer-info') {{-- Footer Contact Information --}}
@if (isset($card['items']) && is_array($card['items'])) @foreach ($card['items'] as $item) @if ($item['id'] === 'support_mail' && isset($footerSupportMail->value))
{{ $footerSupportMail->value }}
@elseif($item['id'] === 'support_contact' && isset($footerContact->value))
{{ $footerContact->value }}
@elseif($item['id'] === 'address' && isset($footerAddress->value))
{{ $footerAddress->value }}
@endif @endforeach @endif
@else {{-- Other Menu Sections - Dynamic Items with Custom URL --}}
    @if (isset($card['items']) && is_array($card['items'])) @foreach ($card['items'] as $item)
  • @php $itemId = $item['id']; $itemLabel = $item['label']; $itemUrl = '#'; $isExternal = false; // Check if custom URL is set if (!empty($item['url'])) { $itemUrl = $item['url']; // Check if URL is external $isExternal = !str_starts_with($itemUrl, url('/')) && !str_starts_with($itemUrl, '/') && !str_starts_with($itemUrl, '#') && (str_starts_with($itemUrl, 'http://') || str_starts_with($itemUrl, 'https://')); } else { // Fallback to default route mapping if ($card['id'] === 'quick-links') { switch ($itemId) { case 'subscription': $itemUrl = '#'; break; case 'add_post': $itemUrl = route('product-ad'); break; case 'login': $itemUrl = route('user.login'); break; case 'registration': $itemUrl = route('user.register'); break; } } elseif ($card['id'] === 'company') { switch ($itemId) { case 'about_us': $itemUrl = route('about.us'); break; case 'most_popular': $itemUrl = route('products'); break; case 'terms': $itemUrl = route( 'guest.pages', 'terms-conditions', ); break; case 'privacy': $itemUrl = route( 'guest.pages', 'privacy-policy', ); break; } } elseif ($card['id'] === 'help-support') { switch ($itemId) { case 'faq': $itemUrl = '#'; break; case 'stay_safe': $itemUrl = '#'; break; case 'contact': $itemUrl = route('contact.us'); break; } } } @endphp {{ __($itemLabel) }}
  • @endforeach @endif
@endif
@endforeach @endif

{{ $footerCopyright->value ?? '© 2026 All Rights Reserved' }}