@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') {{ $getData->title.' '.trans('front.faq.faq') }} {{ trans('front.general.home') }} {{ trans('front.faqs.all_faq_list') }} {{ $getData->title.' '.trans('front.faq.faq') }} {{ $getData->title }} {{ trans('front.faq.desc') }} @php($chunkSize = ceil($getData->faqs->count() / 2)) @foreach($getData->faqs->chunk($chunkSize) as $key => $chunk ) @foreach( $chunk as $k => $question) {{ $question->title }} {{ strip_tags(htmlspecialchars_decode($question->text)) }} @endforeach @endforeach {{ trans('front.faq.submit_title') }} @csrf {{ trans('front.contact.email_address') }}* {{ trans('front.contact.subject') }}* {{ trans('front.contact.your_message') }}* {{ trans('front.contact.submit_now') }} @endsection @section('js') @parent @endsection
{{ trans('front.faq.desc') }}