https://github.com/jhoyax/ecommerce-api
E-commerce API using Laravel
https://github.com/jhoyax/ecommerce-api
api laravel
Last synced: 4 months ago
JSON representation
E-commerce API using Laravel
- Host: GitHub
- URL: https://github.com/jhoyax/ecommerce-api
- Owner: jhoyax
- Created: 2020-01-23T05:24:34.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-05T05:33:19.000Z (over 2 years ago)
- Last Synced: 2025-02-03T04:48:51.383Z (5 months ago)
- Topics: api, laravel
- Language: PHP
- Homepage:
- Size: 2.59 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# E-commerce API using Laravel
## API Documentation
https://documenter.getpostman.com/view/9550004/SWTABz5n
## Routes
```
+----------+-------------------------------------------+
| Method | URI |
+----------+-------------------------------------------+
| POST | api/login |
| POST | api/logout |
| GET|HEAD | api/products |
| POST | api/products |
| GET|HEAD | api/products/categories |
| POST | api/products/categories |
| GET|HEAD | api/products/categories/{productCategory} |
| PATCH | api/products/categories/{productCategory} |
| DELETE | api/products/categories/{productCategory} |
| GET|HEAD | api/products/generate-slug |
| GET|HEAD | api/products/{product} |
| PATCH | api/products/{product} |
| DELETE | api/products/{product} |
| POST | api/register |
+----------+-------------------------------------------+
```