File: D:/HostingSpaces/SBogers10/momsecurity.komma.nl/resources/views/organisms/testimonials.blade.php
@foreach($testimonials as $testimonial)
<article class="o-blog__article">
<a class="o-blog__link" href="{{$links->references->route}}/{{$testimonial->translation->slug}}">
@if(isset($testimonial->images) && $testimonial->images->count() != 0)
<div class="o-blog__image">
<div class="o-blog__bg-image" @if(isset($testimonial->images) && $testimonial->images->count() != 0) style="background-image: url('{{ $testimonial->images->first()->medium_image_url }}');" @endif></div>
</div>
@endif
<div class="o-blog__body">
<h2 class="o-blog__heading">{{ $testimonial->translation->name }}</h2>
@if($testimonial->translation->teaser)
<p class="o-blog__intro">
{{$testimonial->translation->teaser}}
</p>
@endif
<p class="o-blog__action">
<span class="o-blog__readmore">Lees meer</span>
@include('components.icons.arrow')
</p>
</div>
</a>
</article>
@endforeach