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/zuiderbos.komma.pro/app/storage/views/040b81c9ff72196daa415bdd36624785
<?php $__env->startSection('editable_content'); ?>

    <div class="image-wrapper">
        <?php echo $__env->make('layouts.partials.navigation', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

        <div class="content-placeholder">

            <?php /* Make extra block for the creative backgrounds in this design :p */ ?>
            <div class="background"></div>
            <div class="grey-block"></div>

            <div class="grid-row">
                <span class="right-icon styling"></span>


                <?php /* Impression block */ ?>
                <div class="page-impression grid-col">

                    <?php if(starts_with($page->school->type, 'vso')): ?>
                        <img alt="<?php echo $page->translation->name; ?>"
                             src="/img/faq-image-college.jpg"/>
                    <?php else: ?>
                        <img alt="<?php echo $page->translation->name; ?>"
                         src="/img/faq-image.jpg"/>
                    <?php endif; ?>

                    <?php /* Not found block */ ?>
                    <div class="faq-not-found">

                        <h3><?php echo KommaLang::get('faqNotFoundHeader'); ?></h3>
                        <p><?php echo KommaLang::get('faqNotFoundMessage'); ?></p>

                        <a href="tel:<?php echo \Config::get('business.schools.'.$page->root->code_name.'.phone_call'); ?>"><?php echo \Config::get('business.schools.'.$page->root->code_name.'.phone_display'); ?></a>

                    </div>

                    <span class="left-icon styling"></span>

                </div>

                <?php /* Main content block */ ?>
                <div class="grid-col main faq-items">
                    <div class="content">
                        <h1><?php echo $page->translation->name; ?></h1>

                        <?php /* Loop through FAQ item bind to this school */ ?>
                        <?php foreach($page->school->faq()->with('translation')->orderBy('faq.lft', 'asc')->get() as $key => $item): ?>
                            <article class="faq-item <?php if( \Input::get('faq', null) == $item->id): ?> active forced-active <?php endif; ?>" id="faq-<?php echo $item->id; ?>">
                                <p class="name" ><?php echo $item->translation->name; ?></p>

                                <div class="answer">
                                    <?php echo $item->translation->description; ?>

                                </div>
                            </article>
                        <?php endforeach; ?>


                    </div>
                </div>


            </div>
        </div>

    </div>



<?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-js'); ?>
    <script src="/js/faq.js?v=3"></script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.master', ['view' => 'faq'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>