@extends('layouts.docs') @section('section', translate('Knowledge base', 'knowledgebase')) @section('title', translate('Articles', 'knowledgebase')) @section('content')

{{ translate('Articles', 'knowledgebase') }}

@if ($articles->count() > 0)
@foreach ($articles as $article)
{{ $article->title }}

{{ $article->short_description }}

@foreach ($article->categories as $category) {{ $category->name }} @endforeach
@endforeach
{{ $articles->links() }} @else @include('partials.empty') @endif @endsection