HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/32e89279d774e72a2a0f8fa551f6e3c9
 <?php $__env->startSection('content'); ?> <div class="products-overview mobile-page"> <div class="return-button"> <?php if(isset($brand->parent)): ?> <a href="/<?php echo $brand->parent->route; ?>"> <?php echo $brand->parent->name; ?> </a> <?php else: ?> <a href="/<?php echo $shop->getPageService()->page('brands')->route; ?>"> <?php echo \Illuminate\Support\Facades\Lang::get('mobile.back_to_brands_overview'); ?> </a> <?php endif; ?> </div> <?php /*Title*/ ?> <h1><?php echo $brand->name; ?></h1> <?php /*No products text */ ?> <?php if(empty($products)): ?> <article class="text-block"> <p><?php echo Lang::get('pages/products.no_products_found_in_category'); ?></p> </article> <?php endif; ?> <?php /*Product list*/ ?> <section class="products-list"> <?php foreach($products as $product): ?> <?php echo $__env->make('mobile/partials/products/productListItem', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php if($product == $products[0]): ?> <?php /*Show Discount message after the first item*/ ?> <div class="discount-message"> <span></span> <p> <?php echo \Illuminate\Support\Facades\Lang::get('mobile.discountMessage'); ?> </p> </div> <?php endif; ?> <?php endforeach; ?> </section> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('mobile.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>