https://www.grocerycrud.com/enterprise/examples-3/multiple-grids
in above example this way crud object is used.
$crud = new GroceryCrud($config, $database);
$crud2 = new GroceryCrud($config, $database);
but what if i want to used this way
$crud = new GroceryCrud($config, $database);
$crud = new GroceryCrud($config, $database);
so is there any method so I can do $crud->unset; and can reuse that object .... ? i want to load data from mulitple table .. given below is my piece of code
right now if i use this way .... same table is shown.. for multiple times