I have a table for messages (without a controller and model) that users can submit a message to the admin. Aside from creating a messages model and then using loadmodel to search it, is there a better way of doing this?
I would just do something like
//AdminsController
$this->loadmodel('Message');
$this->Message->find(....);
While that is easy to do, I feel like creating a messages model isn't necessary if I can set something up in the Admin model to allow me to do so. Is this possible?