<?php
include "top.php";
?> 
<div class="content-wrapper"> 
<section class="content-header sty-one">
<h1>Abandoned Cart View<small><?php echo $userid;?> </small></h1>
<ol class="breadcrumb">
<li><?php echo $this->Html->link('<i class="fa fa-home"></i>Home', array('controller'=>'Products','action'=>'products'),array('escape' => false));?></li>
<li><i class="fa fa-angle-right"></i> Abandoned Cart View</li>
</ol>
</section>

<section class="content">

<table class="table">
<tr>
<th>ID</th>
<th>PICTURE</th>
<th>SKU</th>
<th>NAME</th>
<th>SIZE</th>
<th>QUANTITY</th>
<th>PRICE</th>
<th>ADDED</th>
</tr>
<?php
$i=1;
foreach($querypages as $value)
{	
?>
<tr>
<td><?php echo $i++;?></td>
<td><?php echo $this->Html->image($value['picture'],array('width'=>'50px'));?></td>
<td><?php echo $value['sku'];?></td>
<td><?php echo $value['name'];?></td>
<td><?php echo $value['size'];?></td>
<td><?php echo $value['quantity'];?></td>
<td><?php echo $value['price'];?></td>
<td><?php echo date_format($value['date'],'Y-m-d');?></td>
</tr>
<?php
}
?>
</table>


<div class="pagination-panel">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="pagination">
<?php echo $this->Paginator->first('First',array('currentTag'=>'a','escape' => false));?>
<?php echo $this->Paginator->numbers();?>
<?php echo $this->Paginator->last('Last', array('currentTag' => 'a', 'escape' => false));?>
</div>
</div>
</div>
</div>
</div>

</section>
</div>
<?php
include "footer.php";
?>