Skip to content

Commit d1ac1dc

Browse files
committedApr 12, 2024
fix: updated stub file to generate properties
1 parent 2978e5e commit d1ac1dc

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `eloquent-datatable` will be documented in this file.
44

5+
## 1.1.1 - 2024-04-12
6+
- fix: updated stub file to generate properties
7+
58
## 1.1.0 - 2024-04-12
69
- feat: add new allow editing property
710

‎stubs/datatable.stub

+14
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@
99

1010
class StubController extends EloquentDatatableController
1111
{
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+
1226
/**
1327
* @return void
1428
*/

0 commit comments

Comments
 (0)