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 77d00df commit e7f65bdCopy full SHA for e7f65bd
CHANGELOG.md
@@ -7,6 +7,7 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
7
### Added
8
9
- Added space to include custom markup at the end of the component.
10
+- Added events documentation
11
12
## [2.1.0] - 2022-04-12
13
docs/datatable/events.md
@@ -0,0 +1,14 @@
1
+---
2
+title: Events
3
+weight: 2
4
5
+
6
+These are the available events on the datatable component that you can fire from your application:
+### refreshDatatable
+```php
+$this->emit('refreshDatatable');
+```
14
+Calls `$refresh` on the component. Good for updating from external sources or as an alternative to polling.
0 commit comments