{!! view_render_event('bagisto.shop.layout.footer.before') !!} @inject('themeCustomizationRepository', 'Webkul\Theme\Repositories\ThemeCustomizationRepository') @php $channel = core()->getCurrentChannel(); $customization = $themeCustomizationRepository->findOneWhere([ 'type' => 'footer_links', 'status' => 1, 'theme_code' => $channel->theme, 'channel_id' => $channel->id, ]); $footerOptions = $customization?->translate(app()->getLocale())['options'] ?? []; $seoSiteName = trim((string) core()->getConfigData('beres_storefront.seo.site_name')); $siteName = $seoSiteName !== '' ? $seoSiteName : ($channel->name ?? config('app.name', 'Ankesh Mart')); // Social media icon map $socialIcons = [ 'facebook' => '', 'instagram' => '', 'youtube' => '', 'tiktok' => '', 'twitter' => '', 'whatsapp' => '', ]; @endphp {{-- Always rendered directly before the footer, after the service highlights. --}} @include('shop::components.layouts.map-section') @push('scripts') @endpush {!! view_render_event('bagisto.shop.layout.footer.after') !!}