-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNew Text Document.txt
93 lines (63 loc) · 2.78 KB
/
New Text Document.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
login->
user dashboard
1. product view
2. add to cart
3. checkout & payment gateway
4. orderlist
5. profile setting
6. tracking
admin dashboard
1. category CRUD
2. sub category CRUD
3. product CRUD
4. user list - CRUD, active
5. order list - status change - pending, accept, processing, delivery
6. reporting - total order, area wise order
7. role wise admin create - role create & permission assign against role, permission list create, user create & role assign,
1. Category - (kazi ela)
add - category name (text), parent category id (select option), category image (file), slug (text), related category (select option) [muti select]
view - category list
edit - category name, parent category id, category image, slug
delete - soft delete, hard delete (product dependency)
2. Product -
add - category (select option), sub cateogory (select option) [muti select], product name, product description, product slug, product image main (file),
input type file mutiple (image bulk update), product buying price , product tax, product discount (amount/percentage), product selling price,
product color (select option) [muti select], product size (select option) [muti select], product description , product specification ,stock qty,
tag
view - product list
edit - all delete
delete -
3. order list -
table view -> id, invoice no, date, user_id, status
4. Role create -
role add - role name
edit
delete
5. permission create -
permission add - permission name, permission route
edit
delete
6. Role wise permission assign - role selection (select option), permission selection (select option) [multi select]
7. User wise role assign - user id (select option), role id (select option)
8. user management - name, phone, email, address, gender, role
edit, delete
9. rating & review -> rating point, create_by, product_id, review details
10. coupon - name, expire date, amount
cateogory table -> id , name, image, slug, related_category
product table -> id, cateogory_id, subcategory_id (json), name, description, slug, buying price, tax, discount, selling price, color, size, specification, qty, tag (json)
product image -> product_id, main_image
color - id, name
size - id, name
orders - id, invoice_no, total amount, user_id,coupon_id
order_details - id, invoice_no, product_id, qty, price, discount, color, size ,note
role - id , name
permission - id, name
role_permission - id, role_id, permission_id (json)
user_role - user_id, role_id
users - id, name, phone, email, address, gender
review - rating_point, create_by, product_id, review_details
permissions:
route: category/list name: category view
route: category/add name: category add
route: category/edit name: category edit
route: category/delete name: category delete