Cakephp ページング

1
2
3
4
5
6
7
8
9
public $components = array('Session');
public $paginate = array(
  'Timetable' => array(
    'limit' => 5,
    'order' => array('id' => 'asc'),
  )
);
 
$this->set('timetables', $this->paginate());
PAGE TOP