← Back to Projects
🔷 laravel-api 2024

E-commerce Backend

REST API for an e-commerce store written in Laravel 10. Manage products and orders with order status management.

Preview

api-panel — rest
Endpoints
GET/api/products
Request
{
  "page": 1,
  "limit": 10
}
Response200 OK
{
  "data": [
    {
      "id": 1,
      "name": "Product A",
      "price": 29.99,
      "stock": 50
    }
  ],
  "total": 150
}

Tech Stack

  • Laravel
  • PHP

Description

REST API for an e-commerce store written in Laravel 10. Manage products and orders with order status management.