<div class="blocktitle">Transaction Hitory Enroll</div>
<div class="table-responsive">
	<table cellpadding="0" cellspacing="0" class="table table-bordered">
	<tr>
			<th><?php echo $this->Paginator->sort('id'); ?></th>
			<th><?php echo $this->Paginator->sort('userID'); ?></th>
			<th><?php echo $this->Paginator->sort('courseTitle'); ?></th>
			<th><?php echo $this->Paginator->sort('courseName'); ?></th>
			<th><?php echo $this->Paginator->sort('courseId'); ?></th>
			<th><?php echo $this->Paginator->sort('totalFees'); ?></th>
			<th><?php echo $this->Paginator->sort('foqasFee'); ?></th>
			<th><?php echo $this->Paginator->sort('teacherFee'); ?></th>
			<th><?php echo $this->Paginator->sort('foqastxnID'); ?></th>
			<th><?php echo $this->Paginator->sort('teachertxnID'); ?></th>
			<th><?php echo $this->Paginator->sort('status'); ?></th>
			<th><?php echo $this->Paginator->sort('createdDate'); ?></th>
			<th><?php echo $this->Paginator->sort('enrollDate'); ?></th>
			<th><?php echo $this->Paginator->sort('transctionStatus'); ?></th>
	</tr>
	<?php foreach ($enrolltransactions as $enrolltransaction): ?>
	<tr>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['id']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['userID']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['courseTitle']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['courseName']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['courseId']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['totalFees']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['foqasFee']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['teacherFee']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['foqastxnID']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['teachertxnID']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['status']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['createdDate']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['enrollDate']); ?>&nbsp;</td>
		<td><?php echo h($enrolltransaction['Enrolltransaction']['transctionStatus']); ?>&nbsp;</td>
	</tr>
<?php endforeach; ?>
	</table>
	<p>
	<?php
	echo $this->Paginator->counter(array(
	'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
	));
	?>	</p>
	<div class="paging">
	<?php
		echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
		echo $this->Paginator->numbers(array('separator' => ''));
		echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
	?>
	</div>
</div>
