site_settings = $settings->pluck('value', 'key')->all(); View::share('site_settings', $this->site_settings); $this->customKey = "12345678"; View::share('custom_key', $this->customKey); } public function getValueSetting($key) { return $this->site_settings[$key] ?? ""; } }