36 lines
860 B
PHP
36 lines
860 B
PHP
<?php
|
|
use yii\bootstrap\Html;
|
|
?>
|
|
|
|
|
|
<h1><?php echo Yii::t('frontend/product','Customer cart')?></h1>
|
|
<div class="row">
|
|
<div class='col-md-12 '>
|
|
<div class="customer-cart">
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product', 'Product name')?>
|
|
</th>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product', 'Count')?>
|
|
</th>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product', 'Currency')?>
|
|
</th>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product', 'Item Price')?>
|
|
</th>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product', 'Total Price')?>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo Html::a(Yii::t('frontend/product', "Fizetve"),null,[ 'id' => 'btn_pay_customer_cart', 'class' => 'btn btn-primary' ]) ?>
|