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>