Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed text formatting in quickstart-sort-filter-table.md #183

Merged
merged 2 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ru/docs/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Model::filters([Filter::class])->simplePaginate();
## Selection

Когда вам нужно отобразить фильтры и применить их к модели, их удобнее сгруппировать, создав отдельный слой «Selection».
Для создания новогоо слоя выполните команду:
Для создания нового слоя выполните команду:

```php
php artisan orchid:selection MySelection
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/docs/quickstart-sort-filter-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function query(): array
* `http://localhost:8000/admin/posts?sort=id` - Записи по возрастанию идентифицирующего номера
* `http://localhost:8000/admin/posts?sort=-id` - Сортировка по убыванию

> ** Обратите внимание. ** Таким способом вы не можете сортировать связанные модели.
> **Обратите внимание.** Таким способом вы не можете сортировать связанные модели.


Для того чтобы отобразить в графическом интерфейсе возможность сортировки, мы должны вызвать метод `sort` для необходимых колонок таблицы в `PostListLayout`:
Expand Down