Home › Forums › fuelCMS › Using a Model
Link to Docs: http://docs.getfuelcms.com/general/models
In order to make the model object available in your Controller (this is where you are using this right?) you need to add this to the top of the file:
$this->load->model('examples_model');
Once you have loaded the model you can access the methods using:
$this->examples_model->method
You must be logged in to reply to this topic.