@extends('layout1') @section('title') {{ $seoSetting->seo_title }} @endsection @section('meta') @endsection @section('frontend-content')

{{ __('FAQ') }}

@if ($faqs->count() > 0)
@foreach ($faqs as $faq)

{!! clean($faq->translation->answer ) !!}
@endforeach
@else

{{ __('Faq Not Found!') }}

@endif
@endsection