Different layouts on cakePHP

0

My system when the user types the url it will fall into the login screen that has its own layout, after login the user is redirected to an AdminLTE style administration screen, but I do not know how I can separate these two layouts without that my code is gambiarra. One solution I thought would be to configure the routes file, but I do not know how to do it.

    
asked by anonymous 28.10.2015 / 13:07

1 answer

0

By default all actions come with the layout / default.ctp set, you must create another layout and in the action that will have the different layout you arrow: $this->layout = 'login';

    
28.10.2015 / 14:18