# Settings

The Settings section allows you to add any site wide settings you would like. You can add an image upload setting for your site logo or a text box for the main headline on your homepage.

![](https://1486345001-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LOZ_fG1zbRQxFD0p8uB-4025916689%2Fuploads%2Fgit-blob-54d51dfc8acf590921f4ab0550565008012abf4b%2Fsettings.png?alt=media\&token=13a15f16-7a4b-4ec2-b158-2b721218e9a1)

In this new version you have the ability to add different groups for different settings. So, if you created a new setting inside of the `site` group and it had a key of `title` you would then be able to reference that setting any where on your site by doing the following:

```php
<?php
echo setting('site.title');
```

Or inside of any blade template like:

```
{{ setting('site.title') }}
```

So, now you can add all kinds of settings in Voyager and reference them in your application.
