@extends('customer_panel.knowledge_base.template') @section('title', __('form.knowledge_base')) @section('knowledge_base_content')
@if(count($article_groups) > 0) @foreach($article_groups->chunk(3) as $chunk_of_article_group)
@foreach($chunk_of_article_group as $article_group)
{{ $article_group->name }} ({{ $article_group->articles_count + $article_group->children_count}})

{{ $article_group->description }}

  • @include('customer_panel.knowledge_base.loop.child_categories', ['children' => $article_group->children()->get() ] )
@endforeach
@endforeach @endif
@endsection