Created
April 19, 2020 19:47
-
-
Save elminson/b443916ce6f41f8cc69349cf07e68511 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
require_once __DIR__.'/bootstrap.php'; | |
$products = [ | |
[ | |
'name' => 'Monitor', | |
'description' => '55 inches', | |
'value' => 800.00, | |
'date_register' => '2019-06-22', | |
], | |
[ | |
'name' => 'Microphone', | |
'description' => 'Yeti blue', | |
'value' => 125.00, | |
'date_register' => '2019-10-25', | |
], | |
[ | |
'name' => 'Speakers', | |
'description' => 'Logitech 200ML', | |
'value' => 250.00, | |
'date_register' => '2019-06-23', | |
], | |
]; | |
$template = $twig->load('products.html'); | |
echo $template->renderBlock('content', array('products' => $products)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment