@extends('web.layouts.layout') @section('content') @include('web.pages.components.header.header')
@foreach($faq_categories as $keyCategory => $category)
@foreach($category->faqs as $key => $row)

{!! $row->currentDescription->answer !!}
@endforeach
@endforeach
@endsection