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/rentman.komma.pro/app/storage/views/a0d09284a942d714c5e01c9094e6e19c
<header class="main">
    <div class="content-container">

        <div class="logo">
            <a href="/<?php if($subNav[0]->route!='/'): ?><?php echo $subNav[0]->route; ?><?php endif; ?>">
                <img src="/img/rentman-logo.svg" alt="logo rentman">
            </a>
        </div>

        <nav>
            <ul class="secondary-nav">
                <?php /*<?php if($data->content->code_name != 'trial'): ?>*/ ?>
                <?php foreach($subNav as $item): ?>
                    <li <?php if($data->content->code_name == $item->code_name): ?> class="active" <?php endif; ?>>
                        <a href="/<?php if($item->route!='/'): ?><?php echo $item->route; ?><?php endif; ?>"><?php if($item->code_name == 'timeline'): ?> <?php echo \Illuminate\Support\Facades\Lang::get('translations.'.$item->code_name); ?> <?php else: ?> <?php echo $item->name; ?> <?php endif; ?></a>
                    </li>
                <?php endforeach; ?>

                <li>
                    <a href="<?php echo \Illuminate\Support\Facades\Lang::get('translations.supportMenu.link'); ?>"><?php echo \Illuminate\Support\Facades\Lang::get('translations.supportMenu.text'); ?></a>
                </li>
                <?php /*<?php else: ?>*/ ?>
                <?php /*<li>*/ ?>
                <?php /*<a href="/<?php if($subNav[0]->route!='/'): ?><?php echo $subNav[0]->route; ?><?php endif; ?>"><?php echo \Illuminate\Support\Facades\Lang::get('translations.backHome'); ?></a>*/ ?>
                <?php /*</li>*/ ?>
                <?php /*<?php endif; ?>*/ ?>
            </ul>
            <div class="main-nav">
                <?php echo $__env->make('layouts.partials.capterra', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                <?php /*<?php if($data->content->code_name != 'trial'): ?>*/ ?>
                <ul>
                    <?php foreach($mainNav as $item): ?>
                        <li <?php if($data->content->code_name == $item->code_name): ?> class="active" <?php endif; ?>>
                            <a href="/<?php echo $item->route; ?>"><?php echo $item->name; ?></a>
                        </li>
                    <?php endforeach; ?>
                </ul>
                <?php /*<?php endif; ?>*/ ?>
            </div>
        </nav>

        <div class="language language-selector">
            <ul>
                <?php foreach($otherLanguages as $language): ?>
                    <?php if(!isset($language->active) || isset($language->active) && $language->active): ?>
                        <li <?php if(\App::getLocale() == $language->iso_2): ?> class="active" <?php endif; ?> >
                            <a data-language="<?php echo $language->iso_2; ?>"
                               href="/<?php if($language->route->route!='/'): ?><?php echo $language->route->route; ?><?php endif; ?>">
                                <?php echo $language->iso_2; ?>

                            </a>
                        </li>
                    <?php endif; ?>    
                <?php endforeach; ?>
            </ul>
        </div>
    </div>
</header>

<div class="sticky-header">
    <div class="content-container">

        <div class="logo">
            <a href="/<?php if($subNav[0]->route!='/'): ?><?php echo $subNav[0]->route; ?><?php endif; ?>">
                <img src="/img/rentman-logo.svg" alt="logo rentman">
            </a>
        </div>

        <ul>
            <?php foreach($mainNav as $item): ?>
                <li <?php if($data->content->code_name == $item->code_name): ?> class="active" <?php endif; ?>>
                    <a href="/<?php echo $item->route; ?>"><?php echo $item->name; ?></a>
                </li>
            <?php endforeach; ?>
        </ul>
    </div>
</div>