16 lines
500 B
PHP
16 lines
500 B
PHP
<div class="order-summary__wrapper">
|
|
<h2>Suma:</h2>
|
|
<?php
|
|
$finalPrice = 0;
|
|
foreach (($this->order_tickets) as $data => $value)
|
|
{
|
|
$finalPrice += $value['price'] * $value['quantity'];
|
|
}
|
|
?>
|
|
<p id="order-general-price"><?= $finalPrice; ?> zł</p>
|
|
<hr>
|
|
<div class="flex flex-buttons-group">
|
|
<button class="btn-t1 btn-save-new-list">Zapisz</button>
|
|
<a href="#" class="btn btn-danger btn-delete-order" data-id="<?= $this -> order_id; ?>">Usuń zamówienie</a>
|
|
</div>
|
|
</div>
|