@extends('frontend.layouts.app') @section('title', $data['faqs']->title) @php $url = URL::current(); @endphp @push('head-area') @endpush @if (trim($data['faqs']->meta_description) != null && $data['faqs']->meta_description != 'NULL') @section('meta_description', $data['faqs']->meta_description) {{-- @section('meta_keywords', $data['product']->meta_keywords) --}} @endif @push('schema') @component('frontend.layouts.schema') {{-- --}} @endcomponent @endpush @section('content') @include('includes.partials.bread-crumbs')

Below are frequently asked questions, you may find the answer for yourself

@if ($data['faqs']) @foreach ($data['faqs'] as $key => $faq)
{!! $faq->answer !!}
@endforeach @else

Sorry No FAQ Found

@endif
@endsection