i think, In "CakePHP" one model is against each controller but i have multiple functions in single controller and each function represent different page and database table. i.e
public function manage_categories(){}
public function manage_sub_categories(){}
above 2 functions are in Admin Controller but now the issue is how to create model against each function to represent database. each function has unique attributes in database. One thing more either model name should be same to controller name "admin" or this name will be same as functions name. while in normal circumstances model name is same to controller name.
"Users" model name is used against "UsersController" kindly guide me ti resolve above said issue. i tried enough to solve it bot couldn't. Thanks in advance.