diff --git a/Support/Settings.php b/Support/Settings.php index 1a2f558..a5ee6f5 100644 --- a/Support/Settings.php +++ b/Support/Settings.php @@ -29,7 +29,7 @@ public function get($name, $locale = null, $default = null) { $defaultFromConfig = $this->getDefaultFromConfigFor($name); - $setting = $this->setting->findByName($name); //before that change I could not fetch any setting!!! + $setting = $this->setting->findByName($name); if (! $setting) { return is_null($default) ? $defaultFromConfig : $default; }