# Настройки

В разделе "Настройки" вы можете добавить любые настройки сайта, которые вам понадобятся. Вы можете добавить настройку загрузки изображения для логотипа вашего сайта или текстовое поле для главного заголовка на вашей домашней странице.

![](/files/-ME4uoJpvnFHUjJoOFlG)

В этой новой версии у вас есть возможность добавлять различные группы для разных настроек. Таким образом, если вы создали новую настройку внутри группы `site` и у нее был ключ `title`, то вы сможете ссылаться на эту настройку в любом месте вашего сайта, сделав следующее:

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

Или внутри любого blade-шаблона:

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

Итак, теперь вы можете добавлять всевозможные настройки в Voyager и ссылаться на них в своем приложении.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://delphinpro.gitbook.io/voyager-ru/core-concepts/settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
