@php
$footerLogoPath = 'images/logo.png';
$footerLogoSrc = file_exists(public_path($footerLogoPath)) ? asset($footerLogoPath) : null;
if (!$footerLogoSrc && config('site.logo_url')) {
$configuredLogo = ltrim(config('site.logo_url'), '/');
if (file_exists(public_path($configuredLogo))) {
$footerLogoSrc = asset($configuredLogo);
}
}
$footerCategories = \App\Models\Category::where('is_active', true)
->orderBy('sort_order')
->limit(12)
->get();
$pages = [
['name' => 'আমাদের সম্পর্কে', 'url' => route('about')],
['name' => 'যোগাযোগ', 'url' => route('contact')],
['name' => 'বিজ্ঞাপন', 'url' => route('advertise')],
['name' => 'গোপনীয়তা নীতি', 'url' => route('privacy')],
['name' => 'ব্যবহারের শর্তাবলী', 'url' => route('terms')],
['name' => 'আর্কাইভ', 'url' => route('archives')],
];
@endphp
@if(config('site.newsletter_enabled'))
@push('scripts')
@endpush
@endif