@extends('themes.'.config('smartekcms.themes.frontend').'.app', [ 'title' => trans('front.faq.frequently_asked_questions').' | '.trans('front.faq.faq'), 'meta_description' => trans('front.faq.meta_description', ['appName' => $general_settings->website_title ?? config('app.name') ]), 'cover_image' => $coverImage, 'model_type' => 'faq', ]) @section('head') @endsection @section('content')
shape
@if($findData->faqs) @php($chunkSize = ceil($findData->faqs->count() / 2)) @foreach($findData->faqs->chunk($chunkSize) as $key => $chunk )
@foreach( $chunk as $k => $question)
{{ strip_tags(htmlspecialchars_decode($question->text)) }}
@endforeach
@endforeach @endif

{{ trans('front.faq.submit_title') }}

@csrf
@endsection @section('js') @parent @endsection