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/komma.pro/resources/views/site/blocks/services/contentBlock.blade.php
<div class="o-service-content__block  o-service-content__block--two-columns  @if($block->location == 'right') o-service-content__block--reverse @endif">

    {{-- Summary --}}
    <section class="o-service-content__block-left">

        <div class="o-service-content__text">
            {!! $block->description !!}

            @if(!empty($block->link) && !empty($block->link_text))
                <a href="{{ $block->link }}" class="o-service-content__button  button stroked blue arrow">
                    {!! $block->link_text !!}
                </a>
            @endif

        </div>

    </section>

    {{-- Services--}}
    <section class="o-service-content__block-right o-service-content__block-image">
        @if(isset($block->code_name) && $block->code_name == 'kernwaarde_video')
            <div class="c-video">
                <div class="c-video__iframe  js-youtube-player"
                     data-youtube-link="M6LfyLNhKC8"
                     data-auto-play=""
                     id="random-video"
                >
                </div>
            </div>
        @else
            @if(isset($block->images) && ! empty($block->images))
                @include('site.blocks.services.image', [
                'images' => $block->images,
                'imageId' => 'block-' . $block->blockId
                ])
            @endif
        @endif
    </section>

</div>