I have this
class JobsController extends EncoderAppController
{
var $uses = array('Cars.Engine','Trucks', 'TruckModel', 'Cars.Properties' , 'Customer', 'User');
I am confused as later in the code its used like this
$this->Trucks->
or
$this->Cars->
I am not sure where to look when I get to this part of the code.
thanks
$this->Truck->refers to a model. Note that Models should be singular.