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

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

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