function assign_students(){
$this->is_logged_in();
$crud = new grocery_CRUD();
$crud->set_table('students');
$crud->set_subject('Student Assignment');
$crud->set_relation('Section_ID','section_name','Section_Description');
$crud->set_relation('SY_Section_ID','school_year','SY_name');
$crud->set_relation('Student_ID','student_name','S_Lname');
$output = $crud->render();
$this->session->set_userdata(array('title' => "Activity"));
$this->load->view('header',$output);
$this->load->view('body',$output);
}


student_name fields
Good Day! :)
It only displays the lastname field, how can i display its complete name.
Thank you very much!
