multi-instance
You can create multiple CRUD tables on the same page by instantiating separate ArtiGrid objects. Each grid can have its own table, template, and configuration, allowing you to display different datasets independently.
<?php
$grid1 = new ArtiGrid();
$grid1->table('orders')
->template('bootstrap5')
->modal();
echo $grid1->render();
$grid2 = new ArtiGrid();
$grid2->table('demo')
->template('bootstrap5')
->modal();
echo $grid2->render();
?>