I\'m getting an unable to locate model error.
$this->load->model(\'1/Gift_model\');
My model file name is gift_model.php
Ensure that the the model name is Gift_model and the class name is also Gift_model
class Gift_model extends CI_Model { }
but loading the class is '1/gift_model' NOT 'Gift_model'
$this->load->model('1/gift_model');
hope this was helpful