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 e4c05a8 commit 9ddb9aeCopy full SHA for 9ddb9ae
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `laravel-livewire-tables` will be documented in this file
4
5
+## [v3.4.20] - 2024-09-10
6
+### Bug Fixes
7
+- Revert tableName to be public by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1937
8
+
9
## [v3.4.19] - 2024-09-08
10
### Bug Fixes
11
- Adjustment for Laravel 10 GH Workflows by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1933
src/Traits/ComponentUtilities.php
@@ -24,7 +24,8 @@ trait ComponentUtilities
24
25
protected array $relationships = [];
26
27
- protected string $tableName = 'table';
+ #[Locked]
28
+ public string $tableName = 'table';
29
30
#[Locked]
31
public ?string $dataTableFingerprint;
0 commit comments