I am trying to use the paginate function for the news part of the site.
$this->examples_model->paginate('per_page', ['offset'])
and i get this error:
Fatal error: Call to a member function paginate() on a non-object in /home/dev/public_html/fuelcms/fuel/application/views/aktuelt.php on line 14
this is the code on line 14:
$this->aktuelt_model->paginate(1, 0);
Any clues on what can be?
Comments
$CI->load->model('examples_model');
or$this->load->model('examples_model');