Have tables which have same filed names
Table1
id | rid | qty
Table2
id | name | qty
$crud->set_relation('id','table2','qty');
how to display both qty column in crud.
Need crud column something like this
id | rid | qty(from table1) | qty (from table2)