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/ste.komma.pro/resources/views/components/servicepoint.blade.php
<div class="c-servicepoint">
    <img class="c-servicepoint__img" src="{{isset($servicePointImage) ? $servicePointImage : 'https://source.unsplash.com/OXUWwd4wu80/168x168'}}" width="124" height="124" alt=""/>
    <div class="c-servicepoint__body">
        @if(isset($servicePointLabel))
            <p class="c-servicepoint__label">{{$servicePointLabel}}</p>
        @endif

        <div class="c-servicepoint__sub">
            @if(isset($servicePointSubText))
                <span class="u-color-secondary--500  u-fw-extraBold">{{$servicePointSubText}}</span>
            @endif

            @if(isset($servicePointButtonText) && isset($servicePointButtonLink))
                @include('components.textButton', [
                    'buttonText' => $servicePointButtonText,
                    'buttonLink' => $servicePointButtonLink,
                ])
            @endif
        </div>
    </div>
</div>