Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhoyax/ecommerce-api
E-commerce API using Laravel
https://github.com/jhoyax/ecommerce-api
api laravel
Last synced: about 1 month 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 (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-05T05:33:19.000Z (about 2 years ago)
- Last Synced: 2023-03-03T14:26:44.222Z (almost 2 years 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 |
+----------+-------------------------------------------+
```