-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
97 lines (97 loc) · 3.6 KB
/
db.json
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
94
95
96
97
{
"cars": [
{
"id": 1,
"name": "Toyata C11",
"description": "toyata c11 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 12,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697211497/innova/products/cars/klipartz.com_2_jlppkj.png",
"brand": "Toyata",
"passengers": 4,
"transmissions": "Manual"
},
{
"id": 2,
"name": "Toyata s20",
"description": "toyata s20 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697210388/innova/products/cars/klipartz.com_1_tcxwca.png",
"brand": "Toyata",
"passengers": 4
},
{
"id": 3,
"name": "Merceds s21",
"description": "Merceds s21 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697210130/innova/products/cars/car-png-39058_ig1oeu.png",
"brand": "Merceds",
"passengers": 2,
"transmissions": "Automatic"
},
{
"id": 4,
"name": "Merceds c22",
"description": "Merceds c22 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697209788/innova/products/cars/car-png-39068_cnqzh9.png",
"brand": "Merceds",
"passengers": 4,
"transmissions": "Automatic"
},
{
"id": 5,
"name": "BMW c22",
"description": "BMW c22 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697209674/innova/products/cars/bmw-car-png-2093_swwoc1.png",
"brand": "BMW",
"passengers": 4,
"transmissions": "Automatic"
},
{
"id": 6,
"name": "BMW A10",
"description": "BMW A10 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697209583/innova/products/cars/bmw-car-png-2086_wpki1p.png",
"brand": "BMW",
"passengers": 4,
"transmissions": "Automatic"
},
{
"id": 7,
"name": "RangRover A10",
"description": "RangRover A10 car is a 5 seater 4 cylinder car and has length of 4793mm, width of 2033mm and a wheelbase of 2865mm.",
"price": 100,
"stock": 10,
"car_img": "https://res.cloudinary.com/dbolkzi38/image/upload/v1697106277/innova/products/cars/Range-Rover-1_xckgve.png",
"brand": "RangRover",
"transmissions": "Automatic"
}
],
"brands": [
{
"id": 1,
"name": "Toyata"
},
{
"id": 2,
"name": "Merceds"
},
{
"id": 3,
"name": "BMW"
},
{
"id": 4,
"name": "RangRover"
}
]
}