Overview
The product management system allows administrators to oversee all products on the platform, including those created by sellers and in-house products. You can manage product approval, featured status, and inventory settings.Product Types
Admin Products
Products created and managed directly by the platform administration. Route:/admin/products/admin
Seller Products
Products uploaded by individual sellers that may require approval. Route:/admin/products/seller/{product_type}
Product types include:
- Physical products
- Digital products
- Wholesale products
- Auction products
All Products View
Access a comprehensive list of all products across the platform. Route:/admin/products/all
Managing Products
Creating Products
Navigate to Product Creation
Go to Products > Create New ProductScreenshot Description: Product menu with “Create New Product” button highlighted
Fill Product Information
Enter the following details:
- Product name
- Category selection
- Brand (optional)
- Unit and description
- Tags for searchability
Set Pricing and Stock
Configure:
- Unit price
- SKU combinations (if variants exist)
- Current stock levels
- Color options (if applicable)
Add VAT & Tax
Select applicable tax rates and types:
- Tax ID
- Tax percentage
- Tax type (inclusive/exclusive)
Editing Products
Access Edit Mode
Click the edit icon next to the productAdmin products:
Seller products:
/admin/products/admin/{id}/editSeller products:
/admin/products/seller/{id}/editProduct Features
Featured Products
Mark products as featured to highlight them on the homepage.Today’s Deal
Promote products in the “Today’s Deal” section for increased visibility. Route: POST/admin/products/todays_deal
Product Approval
If seller product approval is enabled, review and approve seller products.Product approval is controlled by the
product_approve_by_admin business setting. When enabled, all seller products require admin approval before appearing on the storefront.Category Management
Creating Categories
Enter Category Details
- Category name
- Parent category (for subcategories)
- Level (0 for root categories)
- Category type (physical/digital)
Category Types
Route: POST/admin/categories/categoriesByType
Filter categories by:
- Physical products (
digital = 0) - Digital products (
digital = 1)
Brand Management
Manage product brands across the platform. Routes:- List brands:
/admin/brands - Create:
/admin/brands/create - Edit:
/admin/brands/edit/{id} - Delete:
/admin/brands/destroy/{id}
Bulk Operations
Bulk Product Upload
Upload multiple products via CSV.Bulk Product Delete
Product Attributes
Managing Attributes
Create and manage product attributes (size, color, material, etc.). Routes:- List:
/admin/attributes - Create:
/admin/attributes/create - Edit:
/admin/attributes/edit/{id} - Store attribute values: POST
/admin/store-attribute-value
Color Management
Manage color options for products. Routes:- View colors:
/admin/colors - Add color: POST
/admin/colors/store - Edit:
/admin/colors/edit/{id} - Update: POST
/admin/colors/update/{id}
Digital Products
Managing Digital Products
Product Duplication
Quickly create similar products by duplicating existing ones. Route:/admin/products/duplicate/{id}
Duplication copies all product details, stock configurations, and tax settings to the new product.