Added imap_setting to Setting Page

This commit is contained in:
Gitea
2025-04-23 04:44:46 +05:30
parent 65f6df64aa
commit 20ebb7e4a4
3 changed files with 59 additions and 5 deletions

View File

@@ -24,10 +24,12 @@ class Setting extends Model
'app_social',
'app_header',
'app_footer',
'imap_settings',
];
protected $casts = [
'app_meta' => 'json',
'app_social' => 'json'
'app_social' => 'json',
'imap_settings' => 'json',
];
}