An open API service indexing awesome lists of open source software.

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

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