@extends('layouts.app') @section('title', __('essentials::lang.knowledge_base')) @section('content') @include('essentials::layouts.nav_essentials')

@lang('essentials::lang.knowledge_base')

@foreach($knowledge_bases as $kb)

{{$kb->title}}

{!! $kb->content !!} @if(count($kb->children) > 0)
@foreach($kb->children as $section)
index == 0 )aria-expanded="true" @endif >
{!!$section->content!!} @if(count($section->children) > 0) @endif
@endforeach
@endif
@if($loop->iteration%3 == 0)
@endif @endforeach
@endsection @section('javascript') @endsection