I need to pass both $data and $object when loading view_nav
public function home(){
$this->load->model('get_company_model');
$this->load->model('bank_account_model');
$data['results'] = $this->get_company_model->get_All();
$object['site2']=$this;
$this->load->view('view_header');
$this->load->view('view_nav');
$this->load->view('view_content');
$this->load->view('view_footer');
}
here I need to pass $data[results] and object of the current controller, how can I do this