@php $admin_settings = getAdminAllSetting(); $company_settings = getCompanyAllSetting(); $favicon = isset($company_settings['favicon']) ? $company_settings['favicon'] : (isset($admin_settings['favicon']) ? $admin_settings['favicon'] : 'uploads/logo/favicon.png'); $color = !empty($company_settings['color']) ? $company_settings['color'] : 'theme-1'; if (isset($company_settings['color_flag']) && $company_settings['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } @endphp