Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a486dd9

Browse files
committedDec 15, 2023
Updated to version 1.2.0
1 parent fe3d5e8 commit a486dd9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

‎README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,13 @@ For the `images` directory we specified that it can only access the any files th
474474

475475
To view all files that are in `public` directory with files in nested folders. You woudn't add the `public` folder before getting files, it'll return `Not Found page`. So like the above example, to access the file in the `assets` folder. We would follow the url: `http://localhost:8000/assets/image.jpg` and not `http://localhost:8000/public/assets/image.jpg`. And if files are in the root directory of the project, it would be accessed directly after the host url: `http://localhost:8000/image.jpg`.
476476

477+
478+
# Version 1.1.0
479+
- Read official documentation
480+
481+
# Version 1.2.0
482+
- Read official documentation
483+
477484
***HURRAY as you enjoy using PhpSlides!!!***
478485

479486
***More functions are coming in the next versions***

‎routes/api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
use PhpSlides\Api;
44

55
Api::get("/api/posts");
6-
Api::post("/api/posts/{id}", @Post);
6+
Api::post("/api/posts/{id}", @Post);

0 commit comments

Comments
 (0)
Please sign in to comment.