Created
May 22, 2017 13:26
-
-
Save madsleejensen/c8eb19108b10cf6b2f7f059effbcd054 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$products = [ | |
[ | |
'name' => 'Økologisk hotdog', | |
'description' => 'Lorem ipsum', | |
'price' => 65.00, | |
'image_url' => 'https://www.dropbox.com/s/ftvplfiohzko4ks/10472758_967766076629409_6360563572908362411_o.jpg?dl=1', | |
'category' => 'FOOD' | |
], | |
[ | |
'name' => 'Spelt croissant', | |
'description' => 'Lorem ipsum', | |
'price' => 34.95, | |
'image_url' => 'https://www.dropbox.com/s/4vixcdqcydpe3uv/11148458_899108596828491_5488787056657620278_o.jpg?dl=1', | |
'category' => 'FOOD' | |
], | |
[ | |
'name' => 'Italienske macarons', | |
'description' => 'Lorem ipsum', | |
'price' => 79.95, | |
'image_url' => 'https://www.dropbox.com/s/tyw6wwflocaqeeg/12185059_973374529401897_6214552039574162532_o.jpg?dl=1', | |
'category' => 'FOOD' | |
], | |
[ | |
'name' => 'Hindbær snitter', | |
'description' => 'Lorem ipsum', | |
'price' => 25.00, | |
'image_url' => 'https://www.dropbox.com/s/yg1ra4mg7edio1g/Hindbaersnitter.jpg?dl=1', | |
'category' => 'FOOD' | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment