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/EUmans/umansradepo.be/app/storage/views/9e26fa2ba027f44c6add13d94d333150
<div class="mobile">
    <header>
        <div class="mobile_btn nav"><span class="icon"></span></div>
        <a class="logo" href="/<?php if( \Config::get('app.radepoActive')): ?><?php echo 'home'; ?><?php endif; ?>"></a>

        <div class="mobile_btn contact"><span class="icon"></span></div>
    </header>
    <section class="mb_content scrollable">
        <nav id="mobile_nav">
            <ul class="inner">

                <?php foreach($mainNav as $menuItem): ?>
                    <li <?php if($menuItem->code_name == 'windows-doors' || $menuItem->code_name == 'isolation'): ?> class='mb_dropdown' <?php endif; ?>>
                        <?php if($menuItem->code_name == 'windows-doors' || $menuItem->code_name == 'isolation'): ?>
                            <span class="title"><span class="dd_arrow"></span><?php echo $menuItem->name; ?></span>
                            <ul>
                                <?php if ( ! ($menuItem->code_name == 'isolation')): ?>
                                    <li>
                                        <a class="title <?php if(isset($page) && ($page->code_name == $menuItem->code_name)): ?> active <?php endif; ?> "
                                           href='/<?php echo $menuItem->route; ?>'><?php echo \Illuminate\Support\Facades\Lang::get('translations.global'); ?></a></li>
                                <?php endif; ?>

                                <?php foreach($secondMenu as $subMenuItem): ?>
                                    <li>
                                        <a class="title <?php if(isset($page) && ($page->code_name == $subMenuItem->code_name)): ?> active <?php endif; ?> "
                                           href='/<?php echo $subMenuItem->route; ?>'><?php echo $subMenuItem->name; ?></a></li>
                                <?php endforeach; ?>
                            </ul>
                        <?php else: ?>

                            <a class="title <?php if( isset($page) && ( $menuItem->code_name == $page->code_name || (isset($page->referencePage) && $page->referencePage && $menuItem->code_name == 'references' ) ) ): ?>active <?php endif; ?> "
                               href="/<?php if($menuItem->route!='/' ): ?><?php echo $menuItem->route; ?><?php endif; ?>">
                                <?php echo $menuItem->name; ?>

                            </a>
                        <?php endif; ?>
                    </li>
                <?php endforeach; ?>

            </ul>
            <div class="offer-placeholder">
                <a class="offer" href="/<?php echo $links->offer->route; ?>"><?php echo $links->offer->name; ?></a>
            </div>
        </nav>
        <div id="mobile_contact">
            <div class="inner">
                <h1 class="title blue"><?php echo \Config::get('business.name'); ?></h1>

                <?php foreach(\Config::get('umans.locations') as $location): ?>
                    <p>
                        <span class="data_title"><?php echo $location['name']; ?></span><br/>
                        <?php echo $location['adres']; ?><br/>
                        <?php echo $location['zip-code']; ?>


                        <?php if(isset($location['phone-display'])&&isset($location['phone-call'])): ?><br/>
                        T: <a href="tel:<?php echo $location['phone-call']; ?>"><?php echo $location['phone-display']; ?></a>
                        <?php endif; ?>
                        <?php if(isset($location['fax-display'])&&isset($location['fax-call'])): ?><br/>
                        F: <a href="tel:<?php echo $location['fax-call']; ?>"><?php echo $location['fax-display']; ?></a>
                        <?php endif; ?>
                    </p>
                <?php endforeach; ?>

                <?php /*<p>
                    <span class="data_title">Aarschot</span><br/>
                    Langdorpsesteenweg 82-84<br/>
                    3200 Aarschot (B)<br/>
                    T: <a href="tel:003216852929">+32 (0)16 - 852 929</a><br/>
                    F: <a href="tel:003216854861">+32 (0)16 - 854 861</a><br/>
                </p>*/ ?>

                <div class="opening-hours">
                    <h4><?php echo \Illuminate\Support\Facades\Lang::get('translations.openingshours'); ?></h4>
                    <ul>
                        <?php
                        $date = \Carbon\Carbon::today();

                        ?>
                        <li <?php if(($date->dayOfWeek != \Carbon\Carbon::SATURDAY) || $date->dayOfWeek != \Carbon\Carbon::SUNDAY)
                        {
                            echo 'class="active"';
                        } ?>><strong><?php echo \Illuminate\Support\Facades\Lang::get('translations.mo-fri'); ?></strong>
                            <br/><span>08:30 - 12:00<br/>13.30 - 18:00</span>
                        </li>
                        <li <?php if($date->dayOfWeek == \Carbon\Carbon::SATURDAY)
                        {
                            echo 'class="active"';
                        } ?>><strong><?php echo \Illuminate\Support\Facades\Lang::get('translations.sa-su'); ?></strong><br/>
                            <span><?php echo \Illuminate\Support\Facades\Lang::get('translations.closed'); ?></span></li>
                    </ul>
                </div>
            </div>
        </div>
    </section>
    <div class="blur"></div>
</div>