File: D:/HostingSpaces/SBogers10/immoginis.komma.pro/app/views/layouts/partials/propertyDetail.blade.php
<section class="content-container property-detail">
<div class="row">
<div class="property-meta grid6">
<h1>
@if($property->decoded_info->PublishPrice && !in_array($property->status, ['2', '3', '4']))
<span>€ {{$property->format_price}}</span>
@endif
@if($property->decoded_info->PublishAddress)
{{$property->decoded_info->Street}} {{$property->decoded_info->HouseNumber}}
{{!empty($property->decoded_info->BoxNr)? 'bus '.$property->decoded_info->BoxNr:''}}
@else
{{$property->type}} {{$property->city}}
@endif
</h1>
@if($property->decoded_info->PublishPrice && !in_array($property->status, ['2', '3', '4']))
<h3 class="mobile-show">€ {{$property->format_price}}</h3>
@endif
<h4>{{$property->postal_code}} {{$property->city}} <span>•</span> {{$property->type}}
@if($property->status == 9)
<span class="notify">
<i class="info-box"></i> {{$property->decoded_info->StatusDescription}}
</span>
@endif
{{--@if(($property->status != 0) || ($property->status != 3))
@if($property->status == 2 || $property->status == 4 || $property->status == 9)
<span class="notify">
<i class="info-box"></i> {{$property->decoded_info->StatusDescription}}
</span>
@endif
@endif--}}
</h4>
@if($property->goal == 'rent')
<div class="notify rental">
<i class="info-box"></i> Huur pand
</div>
@endif
@if($property->status == 9)
<div class="notify mobile-show">
<i class="info-box"></i> {{$property->decoded_info->StatusDescription}}
</div>
@endif
{{--@if(($property->status != 0) || ($property->status != 3))
@if($property->status == 2 || $property->status == 4 || $property->status == 9)
<div class="notify mobile-show">
<i class="info-box"></i> {{$property->decoded_info->StatusDescription}}
</div>
@endif
@endif--}}
</div>
<div class="grid6 stay">
<div class="stay-in-touch-button">
<span></span>
@lang('translations.getInformation')
</div>
</div>
<div class="fb-share-button" data-href="{{\Request::fullUrl()}}" data-layout="button"
data-mobile-iframe="true"></div>
</div>
@if(isset($property->decoded_info->LargePictures))
@include('layouts.partials.propertyImages')
@endif
<div class="row info-row">
<div class="small-info">
<h2>@lang('translations.specs')</h2>
<div class="spec-list">
{{-- NOTE: This is included twice in this blade; one for desktop and one for mobile --}}
@if($property->filter_type == 'ground')
@include('layouts/partials.specsListGround')
@else
@include('layouts/partials.specsList')
@endif
</div>
@include('layouts.partials.documentDetail')
</div>
<div class="grid6 text-block">
@if(!empty($property->decoded_info->PreparedVirtualTourYoutubeId))
<div class="text-block__video">
<h2>@lang('translations.video')</h2>
<div class="text-block__video-wrapper">
<div class="youtube-player" id="property-virtual-tour" data-youtube-link="{{$property->decoded_info->PreparedVirtualTourYoutubeId}}" data-auto-play="false"></div>
</div>
</div>
@endif
<div class="text-block__placeholder">
<h2>@lang('translations.description')</h2>
@if(isset($property->decoded_info->HtmlDescriptionE))
{{html_entity_decode($property->decoded_info->HtmlDescriptionE)}}
@endif
@if(in_array('trackingCookieAccepted', array_keys(\Cookie::get())))
<div class="facebook-share-property">
<img alt="facebookShare" src="/img/facebook-button.svg"/>
</div>
@endif
@if(isset($property->projectRoute))
<div class="more-project-properties">
<a href="/{{$property->projectRoute}}">
@lang('translations.moreProjectProperties')
</a>
</div>
@endif
</div>
</div>
<div class="grid6 property-info">
<div class="larger-info">
<h2>@lang('translations.specs')</h2>
<div class="spec-list">
@if($property->filter_type == 'ground')
@include('layouts/partials.specsListGround')
@else
@include('layouts/partials.specsList')
@endif
</div>
@include('layouts.partials.documentDetail')
</div>
@if($property->decoded_info->PublishAddress && $property->decoded_info->GoogleX != '' && $property->decoded_info->GoogleY != '')
<h2>@lang('translations.map')</h2>
<div id="map" data-googlex="{{$property->decoded_info->GoogleX}}"
data-googley="{{$property->decoded_info->GoogleY}}"></div>
@endif
</div>
</div>
</section>