File: /var/www/vhosts/creativefellows.nl/mygeomil.creativefellows.nl/03072023/views/view.cart.php
<?php
use App\Domain\Tour\Data\PulsarData;
echo $this->fetch('partials/header.inc.php', [
"meta_title" => $page->metaTitle(),
"meta_description" => $page->metaDescription(),
]);
?>
<div class="grid-y grid-frame">
<div class="cell shrink header">
<?= $navigation->getHeader(); ?>
</div>
<div class="cell auto">
<div class="grid-y grid-frame">
<div class="cell auto cell-block-y">
<div class="grid-x" style="height:100%;">
<!-- page-content -->
<div class="cell auto">
<div class="grid-container">
<div class="grid-x">
<div class="cell small-12">
<div class="page-content page-content__cart">
<div class="grid-x grid-padding-x">
<div class="cell small-12 cart-contents">
<?= $page->render(); ?>
<?= $cart->renderConfirmation() ?>
</div>
<div class="cell small-12">
<h2>
Delivery
<?php
if(isset($_SESSION["tour"]) && $_SESSION["tour"] == 1){
echo '<span class="tooltip-wrapper">';
echo (new PulsarData("delivery"))->html("","margin-top:-3rem;");
echo '</span>';
}
?>
</h2>
<?= $form->render(); ?>
<?php
/*$addressbook->render();*/
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of page-content -->
</div>
</div>
</div>
</div>
</div>
<?php
echo $this->fetch('partials/footer.inc.php');
?>