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/testimonialItem.blade.php
<div class="o-testimonials__card">
    <picture class="o-testimonials__picture-small">
        <img src="{{$testimonialImage ? $testimonialImage->first()->small_image_url : '/img/placeholders/image.svg'}}"
             width="160" height="160"
             alt=""/>
    </picture>
    <picture class="o-testimonials__picture-large">
        <img src="{{$testimonialImage ? $testimonialImage->first()->large_image_url : '/img/placeholders/image.svg'}}"
             width="432" height="432"
             data-kal="photo-zoom-out"
             alt=""/>
    </picture>

    <div class="o-testimonials__content">

        @if(!empty($testimonialName))
            <h3 class="o-testimonials__name">{!! $testimonialName !!}</h3>
        @endif
        @if(!empty($testimonialSubtitle))
            <p class="o-testimonials__subtitle">{!! $testimonialSubtitle !!}</p>
        @endif

        @if(!empty($testimonialDescription))
            <div class="o-testimonials__description">{!! $testimonialDescription !!}</div>
        @endif

         @if(isset($testimonialsLinkToPage) && $testimonialsLinkToPage && isset($links->references))
            <div class="o-testimonials__more">
                @include('components.textButton', [
                    'buttonText' => __('site/global.testimonials.readMore'),
                    'buttonLink' => $links->references->route,
                ])
            </div>
        @endif
    </div>
</div>