@extends('layouts.portal') @section('content')
@if(isset($faqs) && $faqs->count() > 0)
@foreach($faqs as $faq)

{!! nl2br(e($faq->answer)) !!}

@endforeach
@else

No FAQs available at the moment.

@endif
@endsection