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/immoginis.komma.pro/app/views/layouts/partials/specsListGround.blade.php
<div class="list1">

    {{-- Address --}}
    <p>
        <span>@lang('translations.adres')</span>
        @if($property->decoded_info->PublishAddress)
            {{$property->decoded_info->Street}} {{$property->decoded_info->HouseNumber}}
            {{!empty($property->decoded_info->BoxNr)? 'bus '.$property->decoded_info->BoxNr:''}}
        @else
            @lang('translations.request')
        @endif
    </p>

    {{-- City --}}
    <p class="capt"><span>@lang('translations.location')</span>{{$property->city}}</p>

    {{-- Construction type --}}
    <p><span>@lang('translations.constructionName')</span> {{$property->decoded_info->ConstructionName}}</p>

    {{-- Legal codes   --}}
    @if(isset($property->decoded_info->PreparedlegalCodes))
        <p class="codes-legal">
            <span>{{$property->decoded_info->PreparedlegalCodes}}</span>
            <i class="info-box">

                    <span class="code-block">
                        @foreach($property->decoded_info->LegalCodes as $legalCode)
                            <span class="placeholder">
                            <em>{{$legalCode}}</em> <b class="description">@lang('property.abbreviation.'.$legalCode)</b>
                            </span>
                        @endforeach
                    </span>
            </i>
        </p>
    @endif

</div>
<div class="list2">

    {{-- Price --}}
    <p><span>@lang('translations.price')</span>
        @if($property->decoded_info->PublishPrice && !in_array($property->status, ['2', '3', '4']))
            € {{$property->format_price}}
        @elseif($property->status == 2)
            @lang('translations.inOption')
        @elseif($property->status == 3)
            @lang('translations.sold')
        @elseif($property->status == 4)
            @lang('translations.rented')
        @else
            @lang('translations.request')
        @endif
    </p>

    {{-- Surface --}}
    <p><span>@lang('translations.po')</span>{{$property->decoded_info->PreparedSurfaceGround2}}</p>
</div>