https://github.com/letitbasecret/e-comm
A full stack react- laravel E-comm web app
https://github.com/letitbasecret/e-comm
api auth curd fakedata middleware migrate react validation
Last synced: about 1 month ago
JSON representation
A full stack react- laravel E-comm web app
- Host: GitHub
- URL: https://github.com/letitbasecret/e-comm
- Owner: letitbasecret
- Created: 2024-06-18T23:35:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T08:53:10.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T11:41:41.442Z (over 1 year ago)
- Topics: api, auth, curd, fakedata, middleware, migrate, react, validation
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
API's
Authentication API's
Register a new user http://127.0.0.1:8000/api/register
method=post
body= {
name,email,password
}
user login http://127.0.0.1:8000/api/login
method=post
body= {
name,email,password
}
show all user detailhttp://127.0.0.1:8000/api/regdata
method= get
------------
show list of all the products http://127.0.0.1:8000/api/list
method=get
store new product in dataBasehttp://127.0.0.1:8000/api/store
method=post
body ={
name, price, description , image
}
show detail of one itemhttp://127.0.0.1:8000/api/show/id
method= get
show default value for updatehttp://127.0.0.1:8000/api/edit/id
method= get
update api http://127.0.0.1:8000/api/update/id/?_method=put
method=post
body ={
name, price, description , image
}
delete product http://127.0.0.1:8000/api/delete/id
method= delete
search producthttp://127.0.0.1:8000/api/search
method= get