diff --git a/docs/book/v6/tutorials/create-book-module-via-dot-maker.md b/docs/book/v6/tutorials/create-book-module-via-dot-maker.md index 37b8468..b097d2f 100644 --- a/docs/book/v6/tutorials/create-book-module-via-dot-maker.md +++ b/docs/book/v6/tutorials/create-book-module-via-dot-maker.md @@ -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/). @@ -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"}' ``` diff --git a/mkdocs.yml b/mkdocs.yml index f74dfe5..980ca95 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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