@php // $themeOptions = [ // [ // 'label' => __tr('System'), // 'value' => 'system_default', // 'href' => route('change.app.theme', ['themeID' => 'system_default']), // 'icon' => 'mdi mdi-remote-desktop fs-15' // ], // [ // 'label' => __tr('Dark'), // 'value' => 'dark', // 'href' => route('change.app.theme', ['themeID' => 'dark']), // 'icon' => 'mdi mdi-moon-waxing-crescent fs-15' // ], // [ // 'label' => __tr('Light'), // 'value' => 'light', // 'href' => route('change.app.theme', ['themeID' => 'light']), // 'icon' => 'mdi mdi-white-balance-sunny fs-15 text-yellow' // ], // ]; // // $currentAppTheme = getUserAppTheme(); @endphp @php $themeOptions = configItem('theme_options'); // Default theme from settings $currentAppTheme = getUserAppTheme() @endphp