Fixed document color issue..

This commit is contained in:
Cüneyt Şentürk
2023-03-09 14:07:27 +03:00
parent a149b358a3
commit 62ccb79c2d
3 changed files with 29 additions and 13 deletions

View File

@@ -149,8 +149,11 @@ trait Documents
$prefix = config('type.document.' . $type . '.setting.prefix');
$key .= $prefix . '.' . $setting_key;
if (! empty($prefix)) {
$key .= $prefix . '.' . $setting_key;
} else {
$key .= $setting_key;
}
return $key;
}