@extends("front.$version.layout") @section('pagename') - {{__('Knowledgebase')}} - {{ convertUtf8($details->title) }} @endsection @section('meta-keywords', "$details->meta_keywords") @section('meta-description', "$details->meta_description") @section('breadcrumb-title', convertUtf8($bex->knowledgebase_details_title)) @section('breadcrumb-subtitle', strlen($details->title) > 30 ? mb_substr($details->title,0,30,'utf-8') . '...' : $details->title) @section('breadcrumb-link', __('Knowledgebase')) @section('content') {{-- article details strat --}}
@foreach ($article_categories as $article_category)
@php $articles = App\Article::where('article_category_id', $article_category->id) ->orderBy('id', 'desc') ->get(); @endphp @if (count($articles) == 0) @else @endif
@endforeach

{{ $details->title }}

{!! replaceBaseUrl($details->content) !!}

{{-- article details end --}} @endsection