I have an array which consisits of multiple tables. I just want to implement pagination such that only 3 tables are displayed (in Cakephp). But i am unable to create pagination as the data is in an array.. Can anyone help me out in creating a pagination for that ???
What i have tried:-
$data = $this->paginate($myarray);
But this is nt working because i need to use ModelName . But i just want to apply pagination to my array $myarray
Any help ??Thanks