@php $brandColor = \App\Models\Setting::getValue('primary_brand_color', '#006738'); $siteName = \App\Models\Setting::getValue('site_name', 'Sawdabazar'); $storePhone = \App\Models\Setting::getValue('store_phone'); $storeEmail = \App\Models\Setting::getValue('store_email'); $storeAddress = \App\Models\Setting::getValue('store_address'); $logo = \App\Models\Setting::getValue('store_logo'); $logoUrl = $logo ? \Illuminate\Support\Facades\Storage::url($logo) : null; // Social URLs $socialFacebook = \App\Models\Setting::getValue('social_facebook'); $socialInstagram = \App\Models\Setting::getValue('social_instagram'); $socialWhatsapp = \App\Models\Setting::getValue('social_whatsapp'); $socialYoutube = \App\Models\Setting::getValue('social_youtube'); @endphp