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 23a6a30 commit 9a74e7bCopy full SHA for 9a74e7b
CHANGELOG.md
@@ -9,6 +9,7 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
9
### Changed
10
11
- Ability to turn off per page option while keeping pagination on
12
+- Fix the search feature if pagination is on, and you're not searching from the first page using Livewire's native resetPage() method.
13
14
## [0.1.2] - 2020-04-28
15
src/Traits/Pagination.php
@@ -46,4 +46,13 @@ trait Pagination
46
* @var string
47
*/
48
public $perPageLabel;
49
+
50
+ /**
51
+ * https://laravel-livewire.com/docs/pagination
52
+ * Resetting Pagination After Filtering Data
53
+ */
54
+ public function updatingSearch() : void
55
+ {
56
+ $this->resetPage();
57
+ }
58
}
0 commit comments