@extends('layouts.admin') @push('title', get_phrase('Knowledge_base')) @push('meta')@endpush @push('css')@endpush @section('content')

{{$articleTitle->title}}

{{ get_phrase('Add Article') }}
    @if (count($articles) > 0) @foreach ($articles as $key => $article)
  • {{ $key+1 }}. {{ $article->topic_name }}

    {!! removeScripts($article->description) !!}
  • @endforeach @if (count($articles) > 0)

    {{ get_phrase('Showing') . ' ' . count($articles) . ' ' . get_phrase('of') . ' ' . $articles->total() . ' ' . get_phrase('data') }}

    {{ $articles->links() }}
    @endif @else @include('admin.no_data') @endif
@endsection @push('js') @endpush