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/wingssprayer.komma.pro/resources/views/templates/faq.blade.php
@extends('master')

@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)

@section('content')
    @if(isset($composedQuestions) && $composedQuestions->count() > 0)

        <div class="o-faq">
            <h1 class="o-faq__heading">{{__('site/faq.heading')}}</h1>
            <ul class="o-faq__list">
                @foreach($composedQuestions as $composedQuestion)
                    @include('components.faqItems', [
                        'question' => $composedQuestion
                    ])
                @endforeach
            </ul>
        </div>

    @else
        <div class="u-spacing-mt7  u-spacing-mb7  u-text-align-center">
            <h3 class="u-spacing-pb7">@lang('site/faq.noQuestions')</h3>
        </div>
    @endif
@endsection