Skip to content

Instantly share code, notes, and snippets.

@elminson
Created April 19, 2020 19:47
Show Gist options
  • Save elminson/b443916ce6f41f8cc69349cf07e68511 to your computer and use it in GitHub Desktop.
Save elminson/b443916ce6f41f8cc69349cf07e68511 to your computer and use it in GitHub Desktop.
<?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