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/momsecurity.komma.nl/resources/views/components/testimonial.blade.php
<div class="o-testimonials__body">

    @if(isset($testimonialImage))
        <picture class="o-testimonials__picture">
            <img class="o-testimonials__img"
                 @if(isset($testimonialImage) && $testimonialImage->count() != 0)
                    src="{!! $testimonialImage->first()->medium_image_url !!}"
                 @else
                    src="/img/placeholder-person.svg" style="width: 100%; height: 100%;"
                 @endif
                 alt="">
        </picture>
    @endif

    <div class="o-testimonials__content">
        @if(!empty($testimonialQuote))
            <div class="o-testimonials__text">{!! $testimonialQuote !!}</div>
        @endif

        @if(!empty($testimonialTitle || !empty($testimonialSubtitle)))
            <div class="o-testimonials__author">
                @if(!empty($testimonialTitle))
                    <h3 class="o-testimonials__heading">{!! $testimonialTitle !!}</h3>
                @endif
                @if(!empty($testimonialSubtitle))
                    <p class="o-testimonials__subheading">{!! $testimonialSubtitle !!}</p>
                @endif
            </div>
        @endif
    </div>

</div>