Skip to content

Commit 414aa94

Browse files
committed
Add comment to TODO in stubs
1 parent c249acf commit 414aa94

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

33
All notable changes to `eloquent-datatable` will be documented in this file.
4+
5+
## 1.0.1 - 2024-04-06
6+
7+
- Add comment to TODO in stubs
8+
49
## 1.0.0 - 2024-04-06
510

611
- Initial release

stubs/datatable.stub

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@
4545
*/
4646
public function store(Request $request)
4747
{
48-
TODO: return to_route('dashboard.products.edit', $post);
48+
// TODO: return to_route('dashboard.products.edit', $post);
4949
}
5050

5151
/**
5252
* Show the form for editing the specified resource.
5353
*/
5454
public function edit(string $id)
5555
{
56-
TODO: return view edit
56+
// TODO: return view edit
5757
}
5858

5959
/**
6060
* Update the specified resource in storage.
6161
*/
6262
public function update(Request $request, string $id): void
6363
{
64-
TODO: Model update
64+
// TODO: Model update
6565
}
6666

6767
/**

0 commit comments

Comments
 (0)