@php // Batch load site logo setting to avoid multiple database queries $themeSettings = get_batch_settings(['theme.site_logo', 'theme.custom_js_footer', 'theme.description']); $siteLogo = $themeSettings['theme.site_logo'] ? Storage::url($themeSettings['theme.site_logo']) : asset('img/dark_logo.png'); $footerJs = $themeSettings['theme.custom_js_footer'] ?? ''; @endphp