I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :
An Error Was Encou
You can give whatever name you want.
Styles guides are recommendations and not musts.
But you have to care to use everywhere the same name.
For example for Test_Model you have to:
class Test_Model extends CI_Model
Test_Model.php
$this->load->model('Test_Model');
$this->Test_Model
To avoid using hard coding strings you can load model like this:
$this->load->model(Test_Model::class);