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/ridderstee.komma.pro/app/storage/views/f965785ae31edd1580ad0b97eba0b24e
<section class="detail-information">
    <div class="grid-row">
        <div class="current-house">
            <h2><?php echo \Illuminate\Support\Facades\Lang::get('translations.defaultHouse'); ?></h2>
            <div class="content">
                <?php echo $house->translation->description; ?>

            </div>

            <?php if($house->translation->optional != ''): ?>
                <h2><?php echo \Illuminate\Support\Facades\Lang::get('translations.optional'); ?></h2>
                <div class="content">
                    <?php echo $house->translation->optional; ?>

                </div>
            <?php endif; ?>

        </div>
        <div class="other-houses">

            <?php if(isset($house->otherType)): ?>

                <h2><?php echo \Illuminate\Support\Facades\Lang::get('translations.otherVariant'); ?></h2>
                <div class="content">
                    <?php echo $house->translation->other_variant; ?>

                </div>


                <a class="button" href="/<?php echo $house->otherType->translation->route->route; ?>">
                    <?php echo $house->otherType->translation->name; ?>

                </a>
            <?php endif; ?>

            <?php if(isset($house->otherSizes)): ?>
                <h2><?php echo \Illuminate\Support\Facades\Lang::get('translations.otherSizes'); ?></h2>
                <div class="content">
                    <?php echo $house->translation->other_sizes; ?>

                </div>

                <?php foreach($house->otherSizes as $otherSize): ?>
                    <a class="button" href="/<?php echo $otherSize->translation->route->route; ?>">
                        <?php echo $otherSize->translation->name; ?>

                    </a>
                <?php endforeach; ?>
            <?php endif; ?>
        </div>
    </div>
</section>