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/ste.komma.pro/resources/views/components/faq.blade.php
<div class="c-faq">
    @if(isset($faqHeader) && $faqHeader !== null)
        <h2 class="c-faq__header">{{$faqHeader}}</h2>
    @endif
    <ul class="c-faq__list">
        @foreach($faqItems as $item)
            <li class="c-faq__item">
                <div class="c-faq__label  js-toggle-trigger" data-toggle-id="faq-label-1">
                    <h2 class="c-faq__heading">
                        <span>{{ $item->translation->name }}</span>
                        <span class="c-faq__arrow">@include('components.icons.arrowheadDown')</span>
                    </h2>
                </div>
                <div class="c-faq__content  js-toggle-target" data-toggle-id="faq-label-1">
                    <p>{!! nl2br($item->translation->description) !!}</p>
                </div>
            </li>
        @endforeach
    </ul>
    @if(isset($faqToPageLink) && $faqToPageLink !== false && isset($links->faq))
        <div class="c-faq__action">
            @include('components.textButton', [
                'buttonLink' => $links->faq->route,
                'buttonText' => __('site/faq.allQuestionsButtonLabel'),
            ])
        </div>
    @endif
</div>