@php $companyName = \App\Models\AppSetting::get('company_name', 'Agrawal Properties'); $companyLogo = \App\Models\AppSetting::get('company_logo'); $companyPhone = \App\Models\AppSetting::get('company_phone'); $companyEmail = \App\Models\AppSetting::get('company_email'); $companyAddress = \App\Models\AppSetting::get('company_address'); $footerCtaEyebrow = \App\Models\AppSetting::get('footer_cta_eyebrow', 'Ready when you are'); $footerCtaHeading = \App\Models\AppSetting::get('footer_cta_heading', 'Looking to buy, sell or rent in Indore?'); $footerCtaSubtext = \App\Models\AppSetting::get('footer_cta_subtext', 'Talk to an advisor who knows the ground. One call, honest advice, no obligation.'); $footerCtaButtonText = \App\Models\AppSetting::get('footer_cta_button_text', 'Enquire now'); $footerAboutText = \App\Models\AppSetting::get('footer_about_text', 'Family-run property advisors in Indore. Plots, homes, farmland and commercial space — bought, sold and managed with a straight answer.'); $footerCopyrightText = \App\Models\AppSetting::get('footer_copyright_text', 'Agrawal Properties · All rights reserved'); $footerColumnGroups = \App\Models\FooterLinkGroup::active()->columns()->orderBy('sort_order') ->with(['links' => fn ($q) => $q->where('is_active', true)->orderBy('sort_order')]) ->get(); $footerBottomGroup = \App\Models\FooterLinkGroup::active()->bottom() ->with(['links' => fn ($q) => $q->where('is_active', true)->orderBy('sort_order')]) ->first(); $socialLinks = \App\Models\SocialLink::active()->orderBy('sort_order')->get(); $socialGlyphs = ['whatsapp' => '✆', 'instagram' => '◎', 'facebook' => 'f']; @endphp