@extends("front.$version.layout") @section('pagename') - {{__('All Articles')}} @endsection @section('breadcrumb-title', convertUtf8($bex->knowledgebase_title)) @section('breadcrumb-subtitle', convertUtf8($bse->knowledgebase_subtitle)) @section('breadcrumb-link', __('Knowledgebase')) @section('content') {{-- article category and list start --}}
@if (count($article_categories) == 0)

{{__('NO ARTICLE FOUND')}}

@else @foreach ($article_categories as $article_category)
@php $articles = App\Article::where('article_category_id', $article_category->id) ->orderBy('id', 'desc') ->get(); $count = 0; @endphp {{ $count . ' ' . __('Articles in this category') }}
@endforeach @endif
{{-- article category and list end --}} @endsection