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/zelfverkopen.komma.pro/resources/views/site/pages/howItWorks.blade.php
@extends('site.master')

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

@section('impressionContent')

    {{--<h1>{!! $page->translation->name !!} </h1>--}}
    <h1>@lang('site/howItWorks.title')</h1>
    {!! $page->translation->impression->description !!}

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

@endsection

@section('content')

    @if(isset($page->translation->impression) && isset($page->translation->impression->images))
        @include('site.partials.impressionRow', ['image' => $page->translation->impression->images[0]])
    @endif

    @if(isset($page->translation->fullTextRow))
        @include('site.partials.fullTextRow', ['description' => $page->translation->fullTextRow->description])
    @endif

    @include('site.partials.howItWorks.process')

    @include('site.partials.howItWorks.ctaRow')

@endsection