@extends('layouts.website') @section('content')
@include('website.partials.page_header')
@include('website.partials.breadcrumb')
@foreach($items as $category)

{!! $category->name !!}

@foreach($category->faqs as $faq)
{!! $faq->answer !!}
@endforeach
@endforeach
@include('website.partials.page_side')
@endsection @section('scripts') @parent @endsection