Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/book/v6/tutorials/create-book-module-via-dot-maker.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Implementing a book module in Dotkernel API using dotkernel/dot-maker
# Implementing a book module in Dotkernel API using DotMaker

The `dotkernel/dot-maker` library can be used to programmatically generate project files and directories.
It can be added to your API installation by following the [official documentation](https://docs.dotkernel.org/dot-maker/).
Expand Down Expand Up @@ -414,8 +414,8 @@ composer serve
If we did everything as planned, we should be able to create a new book by executing the below command:

```shell
curl -X POST http://0.0.0.0:8080/book
-H "Content-Type: application/json"
curl -X POST http://0.0.0.0:8080/book \
-H "Content-Type: application/json" \
-d '{"name": "test", "author": "author name", "releaseDate": "2025-08-21"}'
```

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ nav:
- Tutorials:
- "Setting up CORS": v6/tutorials/cors.md
- "Creating a book module": v6/tutorials/create-book-module.md
- "Creating a book module using dotkernel/dot-maker": v6/tutorials/create-book-module-via-dot-maker.md
- "Creating a book module using DotMaker": v6/tutorials/create-book-module-via-dot-maker.md
- "Token authentication": v6/tutorials/token-authentication.md
- "API Evolution": v6/tutorials/api-evolution.md
- "Find user by identity": v6/tutorials/find-user-by-identity.md
Expand Down