-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
46 lines (46 loc) · 1.14 KB
/
db.json
File metadata and controls
46 lines (46 loc) · 1.14 KB
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
{
"dishes": [
{
"id": "1212",
"name": "Cheddar Burguer",
"description": "Pão, 1 carne, 3 fatias de queijo cheddar, tomate, alface e cebola",
"price": 27,
"image": "/assets/images/cheddarburguer.png"
},
{
"id": "1231",
"name": "Suco 600ml",
"description": "Laranja - Limão - Maracujá",
"price": 8,
"image": "/assets/images/suco.jpg"
},
{
"id": "1452",
"name": "Chicken Burguer",
"description": "Pão, 1 filé de frango, 1 fatia de queijo, tomate, alface e cebola",
"price": 27,
"image": "/assets/images/ChickenBurguer.webp"
}
],
"cart": [
{
"id": "1231",
"name": "Suco 600ml",
"description": "Laranja - Limão - Maracujá",
"price": 8,
"image": "/assets/images/suco.jpg",
"quantity": 5,
"observacao": ""
},
{
"id": "1212",
"name": "Cheddar Burguer",
"description": "Pão, 1 carne, 3 fatias de queijo cheddar, tomate, alface e cebola",
"price": 27,
"image": "/assets/images/cheddarburguer.png",
"quantity": 1,
"observacao": ""
}
],
"orders": []
}