thank you for this great library
i have a question is it possible to have one is to many relation (parent and child)
example faculty have clearance per year
this is my sample table
faculty
id
fname
lname
campus
school
clearance
id
faculty_id (related to faculty table id)
clearance
year
on my clearance view
i use this to get fname and lname
$crud->set_relation('faculty_id','faculty_list','{lname}, {fname}');
now my question:
how can i get the other info from faculty table like campus and school on my clearance view in a different column
or do i need to create campus_id and school_id on my clearance table and set a relation,, is this a good i dea