@extends('front.layouts.app') @section('title') FAQs @endsection @section('tophead') @endsection @section('head') @endsection @section('content')
×

FAQS

@php $faqs = \App\Model\Faq::all(); @endphp
@foreach($faqs as $faq)
{!! $faq->question !!}
{!! $faq->answer !!}
@endforeach
@endsection @section('script') @endsection