Simple and robust e-commerce API to assist those who are just getting started.
for test These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
Laravel
PHP 8.1+
mysql
A step by step series of examples that tell you how to get a development env running
Execute one by one
-> cp .env.example .env
-> composer install
-> php artisan key:generate
create folder under public/storage/images
-> php artisan migrate:fresh --seed
-> php artisan passport:install
-> php artisan serve
And repeat
until finished
End with an example of getting some data out of the system or using it for a little demo
I am using Postman u can use anyone like insomnia
-> (POST)localhost:8000/oauth/token
Headers
Accept : application/json
Content-Type : application/json
Body(put your details [Nb: password allows be 'secret' if you are using seed command] )
{
"grant_type" : "password",
"client_id" : "2",
"client_secret" : "xZNRgxf0f6xFmS8CLxcxkioL7Yhgj9eKOhFxIhkj",
"username" : "[email protected]",
"password" : "secret"
}
Flow below instraction for test your API
(GET) http://localhost:8000/api/products
(GET) http://localhost:8000/api/products/1
(POST) http://localhost:8000/api/products
Headers
Accept : application/json
Content-Type : application/json
Authorization : "put your user secret"
Body(put your details)
{
"name" : "Iphone X",
"description" : "Super Retina in two sizes — including the largest display ever on an iPhone. Even faster Face ID. The smartest, most powerful chip in a smartphone. And a breakthrough dual-camera system. iPhone XS is everything you love about iPhone. Taken to the extreme.",
"price" : 10000,
"stock" : 10,
"discount" : 15
}
same as create only change request post to put
(DELETE) http://localhost:8000/api/products/2
also need some headers as like as product create
(GET) http://localhost:8000/api/products/1/reviews
(POST) http://localhost:8000/api/products/1/reviews
Body(put your details)
{
"customer": "Rakib Hasan Sabbir",
"review" : "Quo sapiente quos suscipit. Dolor et sit architecto deserunt sunt.",
"star" : 5
}
(DELETE) http://localhost:8000/api/products/1/reviews/501