File: D:/HostingSpaces/SBogers10/otium.komma.nl/resources/views/organisms/testimonials.blade.php
<div class="o-testimonials">
@if(isset($testimonialsHeading) && $testimonialsHeading != '')
<h2 class="c-heading u-spacing-mb4">{{ $testimonialsHeading }}</h2>
@endif
<div class="o-testimonials__matrix">
@foreach($composedTestimonials as $testimonial)
@if(!empty($testimonial->translation))
<section class="o-testimonials__item">
@include('components.testimonial', [
'testimonialImage' => $testimonial->documents,
'testimonialQuote' => $testimonial->translation->quote,
'testimonialTitle' => $testimonial->translation->title,
'testimonialSubtitle' => $testimonial->translation->subtitle,
])
</section>
@endif
@endforeach
</div>
</div>