update view json table

This commit is contained in:
2024-07-23 15:17:16 +03:00
parent 85c4a850b1
commit 48e6d645d9
3 changed files with 62 additions and 19 deletions

11
examples/view.php Normal file
View File

@ -0,0 +1,11 @@
<?php
require_once "../vendor/autoload.php";
use Itguild\Tables\ViewJsonTable;
$json = file_get_contents('view.json');
$table = new ViewJsonTable($json);
$table->create();
$table->render();