Skip to content

Instantly share code, notes, and snippets.

@guillaumebdx
Created October 4, 2021 15:30
Show Gist options
  • Save guillaumebdx/9e9c6b811e89203e0ebe9bfd3d096a38 to your computer and use it in GitHub Desktop.
Save guillaumebdx/9e9c6b811e89203e0ebe9bfd3d096a38 to your computer and use it in GitHub Desktop.
<?php
$menus = [
'Entrées' => [
[
'name' => 'Bruschettas',
'price' => 14,
'img' => 'brus',
'description' => 'Hello world',
],
[
'name' => 'Foie gras',
'price' => 19,
'img' => 'foie',
'description' => 'Hello world',
],
[
'name' => 'Saumon fumé',
'price' => 20,
'img' => 'sau',
'description' => 'Hello world',
],
[
'name' => 'Sushis',
'price' => 200,
'img' => 'su',
'description' => 'Hello world',
],
],
'Plats' => [
[
'name' => 'bourguignon fumé',
'price' => 20,
'img' => 'bo',
'description' => 'Hello world',
],
[
'name' => 'Tacos',
'price' => 2,
'img' => 'tacos',
'description' => 'Hello world',
],
[
'name' => 'Homard',
'price' => 420,
'img' => 'hom',
'description' => 'Hello world',
],
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment