Update SettingSeeder to Change Group from 'layout' to 'theme': Refactored frontend layout settings in the SettingSeeder to categorize them under 'theme' instead of 'layout', ensuring better organization and clarity in theme-related configurations.

This commit is contained in:
Ümit Tunç
2025-12-27 08:12:33 +03:00
parent 8244bcc74c
commit 67187e646c
+8 -8
View File
@@ -543,13 +543,13 @@ class SettingSeeder extends Seeder
], ],
// ========================================== // ==========================================
// FRONTEND LAYOUT AYARLARI (layout) // FRONTEND theme AYARLARI (theme)
// ========================================== // ==========================================
[ [
'key' => 'default_meta_title', 'key' => 'default_meta_title',
'value' => 'Truncgil Citrus - Modern Web Çözümleri', 'value' => 'Truncgil Citrus - Modern Web Çözümleri',
'type' => 'string', 'type' => 'string',
'group' => 'layout', 'group' => 'theme',
'label' => 'Varsayılan Meta Başlık', 'label' => 'Varsayılan Meta Başlık',
'description' => 'Sayfalarda özel meta başlık yoksa kullanılacak', 'description' => 'Sayfalarda özel meta başlık yoksa kullanılacak',
'is_public' => true, 'is_public' => true,
@@ -559,7 +559,7 @@ class SettingSeeder extends Seeder
'key' => 'default_meta_description', 'key' => 'default_meta_description',
'value' => 'Yenilikçi teknoloji çözümleri ile geleceği şekillendiriyoruz', 'value' => 'Yenilikçi teknoloji çözümleri ile geleceği şekillendiriyoruz',
'type' => 'text', 'type' => 'text',
'group' => 'layout', 'group' => 'theme',
'label' => 'Varsayılan Meta Açıklama', 'label' => 'Varsayılan Meta Açıklama',
'description' => 'Sayfalarda özel meta açıklama yoksa kullanılacak', 'description' => 'Sayfalarda özel meta açıklama yoksa kullanılacak',
'is_public' => true, 'is_public' => true,
@@ -569,7 +569,7 @@ class SettingSeeder extends Seeder
'key' => 'default_meta_image', 'key' => 'default_meta_image',
'value' => 'assets/img/demos/f1.png', 'value' => 'assets/img/demos/f1.png',
'type' => 'string', 'type' => 'string',
'group' => 'layout', 'group' => 'theme',
'label' => 'Varsayılan Meta Görsel', 'label' => 'Varsayılan Meta Görsel',
'description' => 'Open Graph için varsayılan görsel', 'description' => 'Open Graph için varsayılan görsel',
'is_public' => true, 'is_public' => true,
@@ -579,7 +579,7 @@ class SettingSeeder extends Seeder
'key' => 'logo_path', 'key' => 'logo_path',
'value' => 'assets/img/truncgil-yatay.svg', 'value' => 'assets/img/truncgil-yatay.svg',
'type' => 'string', 'type' => 'string',
'group' => 'layout', 'group' => 'theme',
'label' => 'Logo Yolu', 'label' => 'Logo Yolu',
'description' => 'Header\'da görünecek logo', 'description' => 'Header\'da görünecek logo',
'is_public' => true, 'is_public' => true,
@@ -589,7 +589,7 @@ class SettingSeeder extends Seeder
'key' => 'logo_light', 'key' => 'logo_light',
'value' => 'assets/img/logo-light.png', 'value' => 'assets/img/logo-light.png',
'type' => 'file', 'type' => 'file',
'group' => 'layout', 'group' => 'theme',
'label' => 'Light Logo', 'label' => 'Light Logo',
'description' => 'Koyu zeminler için açık renkli logo', 'description' => 'Koyu zeminler için açık renkli logo',
'is_public' => true, 'is_public' => true,
@@ -599,7 +599,7 @@ class SettingSeeder extends Seeder
'key' => 'logo_dark', 'key' => 'logo_dark',
'value' => 'assets/img/logo-dark.png', 'value' => 'assets/img/logo-dark.png',
'type' => 'file', 'type' => 'file',
'group' => 'layout', 'group' => 'theme',
'label' => 'Dark Logo', 'label' => 'Dark Logo',
'description' => 'Açık zeminler için koyu renkli logo', 'description' => 'Açık zeminler için koyu renkli logo',
'is_public' => true, 'is_public' => true,
@@ -609,7 +609,7 @@ class SettingSeeder extends Seeder
'key' => 'favicon_path', 'key' => 'favicon_path',
'value' => 'assets/img/favicon.ico', 'value' => 'assets/img/favicon.ico',
'type' => 'string', 'type' => 'string',
'group' => 'layout', 'group' => 'theme',
'label' => 'Favicon Yolu', 'label' => 'Favicon Yolu',
'description' => 'Tarayıcı favicon', 'description' => 'Tarayıcı favicon',
'is_public' => true, 'is_public' => true,