We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2978e5e commit d1ac1dcCopy full SHA for d1ac1dc
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
All notable changes to `eloquent-datatable` will be documented in this file.
4
5
+## 1.1.1 - 2024-04-12
6
+- fix: updated stub file to generate properties
7
+
8
## 1.1.0 - 2024-04-12
9
- feat: add new allow editing property
10
stubs/datatable.stub
@@ -9,6 +9,20 @@
class StubController extends EloquentDatatableController
11
{
12
+ protected bool $allowDeletion = true;
13
14
+ protected bool $allowCreation = true;
15
16
+ protected bool $allowEditing = true;
17
18
+ protected bool $createUsingDialog = false;
19
20
+ protected bool $allowSearching = true;
21
22
+ protected int $defaultLimit = 25;
23
24
+ protected string $sortDirection = 'desc';
25
26
/**
27
* @return void
28
*/
0 commit comments