I get the following errors when viewing my Admin Index
Notice (8): Undefined property: ClientsController::$Clients [APP/controllers/clients_controller.php, line
Model names are singular in CakePHP (at least if you follow the naming conventions), which means you have to use: $this->Client->find('all');
$this->Client->find('all');