If I\'ve got a method in a different controller to the one I\'m writing in, and I want to call that method, is it possible, or should I consider moving that method to a help
If you requirement has to Do with some DB operations, then you can write a common function (class method) inside that Model. Functions defined inside model are accessible across to all the controllers. But this solution does to apply to all cases.