Hi I am new to cakephp 2, I have been trying to do a paginate on a associated data (hasMany) but I could not get it to work.
I have two models; Account & transactions. the Account which hasMany transactions & Im using a bake which gives me a basic view but I want to add a paginate to the related data (transaction) for each of the account view.
I know this should be a easy stuff, since Im new to cakephp pagination, any help I will appreciate.
in the AccountsController I have something like this below
public $paginate = array(
'Transaction' => array(
'limit' => 2,
'order' => array('date' => 'ASC'),
'conditions' => array('Transaction.account_id' =>10 ),
//'contain' => 'Transaction'
)
);
I have something like this in my view.ctp
<?php echo __('Related Transactions'); ?></h3>
<?php if (!empty($account['Transaction'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo $this->Paginator->sort('id','#'); ?></th>
<th><?php echo $this->Paginator->sort('date', 'Date'); ?></th>
<th><?php echo $this->Paginator->sort('reference'); ?></th>
<th><?php echo $this->Paginator->sort('description'); ?></th>
<th><?php echo $this->Paginator->sort('debit'); ?></th>
<th><?php echo $this->Paginator->sort('credit'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php
$i = 0;
foreach ($account['Transaction'] as $transaction): ?>
<tr>
<td><?php echo $transaction['id']; ?></td>
<td><?php echo $transaction['date']; ?></td>
<td><?php echo $transaction['reference']; ?></td>
<td><?php echo $transaction['description']; ?></td>
<td><?php echo $transaction['debit']; ?></td>
<td><?php echo $transaction['credit']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'transactions', 'action' => 'view', $transaction['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'transactions', 'action' => 'edit', $transaction['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'transactions', 'action' => 'delete', $transaction['id']), null, __('Are you sure you want to delete # %s?', $transaction['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<p>
<?php
echo $this->Paginator->counter(array(
'model' => 'Transaction',
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}, from model {:model}')
));
?> </p>