{"id":20399890,"url":"https://github.com/omar7tech/ecommerce-laravel-restful-api","last_synced_at":"2026-05-16T08:31:59.218Z","repository":{"id":242746077,"uuid":"810444469","full_name":"Omar7tech/Ecommerce-laravel-restful-api","owner":"Omar7tech","description":"Ecommerce Laravel API is a backend solution tailored for ecommerce applications, providing essential functionalities for managing products, categories, orders, and user locations. Its standout feature is a robust JWT authentication system, ensuring secure user access and authorization, thereby enhancing the overall security of the platform.","archived":false,"fork":false,"pushed_at":"2024-06-04T18:08:00.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T01:30:00.271Z","etag":null,"topics":["api","authentication","authorization","backend","e-commerce","functionality","jwt","laravel","management","scalability","security"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Omar7tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-04T17:56:26.000Z","updated_at":"2024-07-27T01:42:48.000Z","dependencies_parsed_at":"2024-06-04T20:24:26.206Z","dependency_job_id":null,"html_url":"https://github.com/Omar7tech/Ecommerce-laravel-restful-api","commit_stats":null,"previous_names":["omar7tech/ecommerce-laravel-restful-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Omar7tech/Ecommerce-laravel-restful-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omar7tech%2FEcommerce-laravel-restful-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omar7tech%2FEcommerce-laravel-restful-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omar7tech%2FEcommerce-laravel-restful-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omar7tech%2FEcommerce-laravel-restful-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Omar7tech","download_url":"https://codeload.github.com/Omar7tech/Ecommerce-laravel-restful-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omar7tech%2FEcommerce-laravel-restful-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271103202,"owners_count":24699646,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","authentication","authorization","backend","e-commerce","functionality","jwt","laravel","management","scalability","security"],"created_at":"2024-11-15T04:34:54.438Z","updated_at":"2026-05-16T08:31:54.188Z","avatar_url":"https://github.com/Omar7tech.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ecommerce Laravel API\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\n\u003c/p\u003e\n\n## About\n\nEcommerce Laravel API is a powerful backend solution for building ecommerce applications with Laravel. It provides a robust set of features to manage products, categories, orders, and user authentication.\n\n## Features\n\n- **Product Management**: Create, read, update, and delete products with ease.\n- **Category Management**: Organize products into categories for better navigation.\n- **Order Management**: Handle orders, including order creation, retrieval, and status updates.\n- **Authentication**: Secure your API with JWT authentication using Laravel Sanctum.\n- **Location Management**: Manage user locations for efficient order delivery.\n- **Brand Management**: Keep track of brands associated with your products.\n\n## Authentication\n\nThis API uses JWT authentication provided by Laravel Sanctum. Users can register, log in, and log out to access protected routes.\n\n## Installation\n\n1. Clone the repository: `git clone https://github.com/Omar7tech/Ecommerce-laravel-api.git`\n2. Install dependencies: `composer install`\n3. Set up your environment variables: `cp .env.example .env`\n4. Generate the application key: `php artisan key:generate`\n5. Run migrations: `php artisan migrate`\n\n## Routes\n\nHere are some example routes along with their expected responses:\n\n### GET /api/products\n\n**Description:** Retrieve a list of all products.\n\n**Response:**\n```json\n{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Product 1\",\n            \"price\": 50.00,\n            \"category\": {\n                \"id\": 1,\n                \"name\": \"Category A\"\n            },\n            \"brand\": {\n                \"id\": 1,\n                \"name\": \"Brand X\"\n            },\n            \"created_at\": \"2024-06-01T12:00:00.000000Z\",\n            \"updated_at\": \"2024-06-01T12:00:00.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Product 2\",\n            \"price\": 75.00,\n            \"category\": {\n                \"id\": 1,\n                \"name\": \"Category A\"\n            },\n            \"brand\": {\n                \"id\": 2,\n                \"name\": \"Brand Y\"\n            },\n            \"created_at\": \"2024-06-02T12:00:00.000000Z\",\n            \"updated_at\": \"2024-06-02T12:00:00.000000Z\"\n        }\n    ]\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomar7tech%2Fecommerce-laravel-restful-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomar7tech%2Fecommerce-laravel-restful-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomar7tech%2Fecommerce-laravel-restful-api/lists"}