We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a9c5e commit 0c222d6Copy full SHA for 0c222d6
src/Concerns/InteractsWithBoardTable.php
@@ -27,11 +27,20 @@ public function table(Table $table): Table
27
->map(fn ($field) => Column::make($field)->searchable())->toArray();
28
29
return $table
30
+ ->queryStringIdentifier('board')
31
->query($board->getQuery())
32
->filters($board->getBoardFilters())
33
->filtersFormWidth($board->getFiltersFormWidth())
34
->filtersFormColumns($board->getFiltersFormColumns())
35
->filtersLayout($board->getFiltersLayout())
36
->columns($searchableColumns);
37
}
38
+
39
+ /**
40
+ * Override to use board-specific query string identifier.
41
+ */
42
+ protected function getTableQueryStringIdentifier(): ?string
43
+ {
44
+ return 'board';
45
+ }
46
0 commit comments