I\'m getting an unable to locate model error.
$this->load->model(\'1/Gift_model\');
My model file name is gift_model.php
The problem is that your file name is all lowercase (gift_model.php) while you are loading Gift_model within CodeIgniter. Either change the file name to Gift_model.php or update your code accordingly.
gift_model.php
Gift_model
Gift_model.php