php - How can I get the 'id' property of non-object CodeIgniter 3.1?
one text
Solution:
You are not passing laporan
from controller to view.
If you think you have data returned in laporan
variable then your controller should look something like this.
Controller
public function search(){
$search = $this->input->post('search');
$data['laporan'] = $this->control_model->search_laporan($search);
$this->load->view('pages/search', $data); #notice this line
}
Source