Develop resources within namespace

Hi,

I want to develop my resources that deal with CRUD operations on my models in a namespace of /admin. How is the best approach to do this? What needs to be changed in order to do this? As in my last attempt of moving things to a namespace my software broke.

TIA,

Dean

First make sure you are using a source control system such as git so that you can do the work on a branch and can easily go back if there are problems. Secondly make sure you have complete automated test coverage and modify the tests before modifying the code so that you be sure it is all working correctly.

Colin