-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote.txt
89 lines (50 loc) · 1.18 KB
/
note.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
// Main Functions
- Item Mangement
- Brand / Category / Subcategory /
- Sell / Shopping
- Order Management
- items / customer
- orders / order_detail
- Customer Manage
- Reports
-orders
- voucherid,user_id,orderdate,status
-order_details
- voucherid,product_id,qty
-brands
=> 1 | b1 | photo
=> 2 | b2 | photo
-categories
=> 1 | fashion | photo
=> 2 | electronic | photo
-subcategories
=> 1 | baby wear | 1
- os_laravel
Model Relationship
-----------------
- one-to-one
-hasOne (p)
-belongsTo (c)
- one-to-many
-hasMany (p)
-belongsTo (c)
- many-to-many
-belongsToMany
-pivot table
- Homework (using backend template)
----------
- create route for dashboard page (get)
- create master blade (views/backendtemplate.blade.php)
- create child blade (views/backend/dashboard.blade.php)
- create controller BackendController
- create method dashboardfun()
- call view (backend.dashboard)
Item (CRUD)
-----------
create - show form , store data
retrieve - display data (all , row)
update - show form with old value , update data
delete - delete data
php artisan key:generate
php artisan make:model Order
php artisan make:migration create_order_detail_table