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