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/ZelfVerkopen/zelfverkopen.nl/resources/views/site/pages/properties/index.blade.php
@extends('site.master')

@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)

@section('content')

    <div class="grid-row">
        <div class="filter-form grid-col">
            <h1>@lang('site/properties.overviewTitle')</h1>

            @include('site.partials.properties.propertyFiltersForm')

        </div>
    </div>



    <section class="models-overview properties-overview">
        <div class="grid-row">
            <div class="title">
                @if($page->filtered)
                    <h2>{{ trans_choice('site/properties.searchResults', $properties->total(), ['value' => $properties->total()]) }}</h2>
                @else
                    <h2>@lang('site/properties.notFilteredTitle')</h2>
                @endif
                @if($properties->lastPage() != 1)
                    <p>@lang('site/properties.searchResultsPages', ['activePage' => $properties->currentPage(),'amountOfPages' => $properties->lastPage()])</p>
                @endif
            </div>
            <div class="overview">
                @include('site.partials.properties.propertiesLoop')
            </div>

            @include('site.partials.posts.pagination7', ['paginator' => $properties])

        </div>
    </section>

    @include('site.partials.properties.faqRow')

    <div class="text-calculator-row">
        <div class="grid-row">
            <div class="main-content kms-content grid-col">
                {!! $page->translation->properties_text->description !!}

                <div class="buttons">
                    @if(isset($links->scheduleConversation))
                        <a class="button" href="/{{$links->scheduleConversation->route}}">
                            @lang('site/global.scheduleAConversation') <span class="double-arrow"></span>
                        </a>
                    @endif
                    @if(isset($links->startSale))
                        <a class="button green start-sale" href="/{{$links->startSale->route}}">
                            {{$links->startSale->name}} <span class="double-arrow"></span>
                        </a>
                    @endif
                </div>
            </div>

            @include('site.partials.calculationTool')
        </div>
    </div>

@endsection