Closed renatorib closed 8 years ago
Hi,
To paginate notifications, you will have to get notification using a regular CakePHP request. You associate the NotificationModel in your controller and use the PaginatorComponent
Something like :
public $uses = array('Notification.Notification');
And in your action :
$this->set('notifications', $this->Paginator->paginate('Notification'));
How can I paginate the notifications?