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>