@extends('layouts.start') @section('title','FAQs') @section('css') @endsection @section('content')

@yield('title')

@foreach($faqs as $faq)
{!! $faq->content !!}
@endforeach
@endsection @section('js') @endsection