@extends('v1.enduser.layouts.default') @section('content')
@if (trim($pageInfo['content']['title']) !== '' || trim($pageInfo['content']['content']) !== '')

{{ $pageInfo['content']['title'] }}

{!! $pageInfo['content']['content'] !!}

@endif

{{ isset($selectedCat['name']) && $selectedCat['name'] ? $selectedCat['name'] : 'Search FAQ' }}

Category

    @foreach ($faqCategories as $cat) @if ($cat['slug'] != app('request')->categorySlug)
  • {{ $cat['name'] }}
  • @endif @endforeach
@if (count($products) > 0)
@foreach ($products as $product) @include('v1.enduser.faq.faqListItem') @endforeach
@endif
@endsection