@extends('front.layouts.app') @section('title', !empty($faqPage) ? (!empty($data->meta_title) ? $data->meta_title : 'FAQ`s') : 'FAQ`s') @section('description', !empty($faqPage) ? (!empty($data->meta_description) ? $data->meta_description : 'FAQ`s') : 'FAQ`s') @section('keywords', '') @section('content')
First slide

{{!empty($faqPage) ? (!empty($data->faq_title) ? $data->faq_title : 'Faq`s') : 'Faq`s'}}

@foreach($faqs as $key => $faq)
{!! $faq->answer !!} {{--

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English.

--}}
@endforeach
@endsection