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/documentDetail.blade.php
@if(isset($property->decoded_info->PreparedDocuments))
    <div class="documents">
        @if(sizeof($property->decoded_info->PreparedDocuments) != 0)
            <h2>@lang('translations.documentsHeader')</h2>
        @endif

        @foreach($property->decoded_info->PreparedDocuments as $document)
            <p><a class="document" data-extension="{{ $document->extention }}" href="/download/{{Str::slug($property->decoded_info->Street.' '.$property->decoded_info->HouseNumber.' '.$property->city.' '.$document->fileName)}}.{{$document->extention}}?location={{base64_encode($document->filePath)}}">
                <span></span> {{$document->fileName}}
            </a></p>
        @endforeach
    </div>
@endif