I'm using this plugin with CakePHP --> TwitterBootstrap, everything works like a glow except I can't change the layouts. ie. index, add and such.
I have a model called Cinema and have created this with cake bake and the same thing with Views/Cinemas
This is my controller:
<?php
App::uses('AppController', 'Controller');
/**
* Cinemas Controller
*
*/
class CinemasController extends AppController {
/**
* Layout
*
* @var string
*/
public $layout = 'bootstrap';
/**
* Scaffold
*
* @var mixed
*/
public $scaffold;
}
Have i overridden CakePHPs routes into some special scaffolding template?