From e32e8201d4c08347304c19394a8a22f52aa10486 Mon Sep 17 00:00:00 2001 From: Mikhail Bokov Date: Tue, 27 Jun 2023 11:30:28 +0700 Subject: [PATCH] Update quickstart-sort-filter-table.md --- docs/en/docs/quickstart-sort-filter-table.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/en/docs/quickstart-sort-filter-table.md b/docs/en/docs/quickstart-sort-filter-table.md index c6674c12b..c8b7d635e 100644 --- a/docs/en/docs/quickstart-sort-filter-table.md +++ b/docs/en/docs/quickstart-sort-filter-table.md @@ -120,15 +120,13 @@ After that, the column heading will respond to clicking and change the sorting p The trait `Filterable`, allows you to set not only sorting. But also simple `Http` filtering, to set it back to the model and add a new property: ```php -use Orchid\Filters\Types\Like; - /** * Name of columns to which http filter can be applied * * @var array */ protected $allowedFilters = [ - 'title' => Like::class, + 'title', ]; ```