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/beat-the-barn.komma.nl/resources/views/components/faq.blade.php
<div class="c-faq">
    <ul class="c-faq__list  js-toggle">
        @foreach($faqItems as $faqQuestion)
            <li class="c-faq__item">
                <h3 class="c-faq__question  js-toggle-switch">
                    <span class="c-faq__icon">@include('components.icons.arrowhead')</span>
                    <span class="c-faq__title">{{ $faqQuestion->translation->name }}</span>
                </h3>
                <div class="c-faq__answer  s-text  js-toggle-content">
                    {!! $faqQuestion->translation->description !!}
                </div>
            </li>
        @endforeach
    </ul>
</div>