File: D:/HostingSpaces/SBogers10/blije-gasten.komma.pro/resources/views/site/components/faq.blade.php
<ul class="c-faq js-toggle">
@foreach($faqQuestions as $faqQuestion)
<li class="c-faq__item">
<div class="c-faq__question js-toggle-switch">
<h3 class="c-faq__header">{{ $faqQuestion->translation->name }}</h3>
<i class="c-faq__arrow">@include('site.components.icons.arrowhead')</i>
</div>
<div class="c-faq__answer s-text js-toggle-content">
{!! $faqQuestion->translation->description !!}
</div>
</li>
@endforeach
</ul>