tables/index.php

11 lines
203 B
PHP
Raw Normal View History

2024-05-27 12:59:44 +03:00
<?php
require_once __DIR__ . "/vendor/autoload.php";
use Itguild\Tables\ListJsonTable;
$json = file_get_contents('simple.json');
$table = new ListJsonTable($json);
$table->create();
$table->render();