Файл: templates/shop/index.tpl
Строк: 41
<? $this->layout('app', ['title' => 'Мои кассы'])
?>
<? $this->start('container') ?>
<section
class="pt-120 pb-120 default-bg">
<div
class="container">
<div class="row
justify-content-center">
<div
class="col-xl-6 col-lg-8">
<div
class="section-title text-center"
data-animate="fadeInUp">
<h1>Мои кассы</h1>
</div>
</div>
</div>
<div
class="row">
<div
class="col">
<?php if(count($items) ==
0){?>
<h3
class="text-center">Пусто</h3>
<?php
} else { ?>
<div class="features-table-wrap"
data-animate="fadeInUp">
<div
class="table-responsive-lg">
<table class="features-table pt-sans text-center mb-0
table">
<tbody>
<tr>
<th>Имя</th>
<th>Платежи</th>
<th> Баланс</th>
<th>
Оперaции</th>
</tr>
<?php foreach
($items as $res): ?>
<tr>
<td><?=$res['name'];?>
<br>
ID: <?=$res['id'];?>
<br>
<a
href="<?=$res['url'];?>"><?=$res['url'];?></a>
</td>
<td><center><a
href="/shop/history?id=<?=$res['id'];?>"><?=allPay($res['id']);?></a></center></td>
<td><center><a
href="/shop/moneyback?id=<?=$res['id'];?>"
title="Вывод средств"
rel="tooltip"><?=$res['money'];?>
RUB</a></center></td>
<td>
<center>
<a
href="/shop/edit?id=<?=$res['id'];?>"
title="Редактировать"
rel="tooltip"><i class="fa fa-pencil-square"
aria-hidden="true"></i></a>
<a
href="/shop/payments?id=<?=$res['id'];?>"
title="Способы оплаты"
rel="tooltip"><i class="fa fa-credit-card"
aria-hidden="true"></i></a>
<a
href="/shop/wighet?id=<?=$res['id'];?>"
title="Платежная форма"
rel="tooltip"><i class="fa fa-file"
aria-hidden="true"></i></a>
<a
href="/shop/del?id=<?=$res['id'];?>"
title="Удалить" rel="tooltip"><i
class="fa fa-archive"
aria-hidden="true"></i></a>
</center></td>
</tr>
<?php endforeach; ?>
</tbody>
<!-- End Table body
-->
</table>
</div>
</div>
<?php
} ?>
</div>
</div>
<br>
<a href="/shop/new"
class="btn" style="float:right;">Создать
кассу</a>
</div>
</section>
<div
class="text-center">
<?php echo $peger->display;
?>
</div>
<?
$this->stop() ?>