Controller Base CakePHP
<?php class SinglesController extends AppController { var $name = "Singles"; function index(){ $this->set('singles', $this->Single->find('all')); } }