@extends('layouts.customer_panel') @section('content')
{{ __('Search Knowledge Base Articles') }}
@foreach($groups as $key => $value)

{{ $value['name'] }} {{ isset($groupCount[$value['id']]) ? $groupCount[$value['id']] : 0 }}

{!! mb_strlen($value['description']) > 150 ? mb_substr($value['description'], 0, 150) . "..." : $value['description'] !!}


@endforeach
@endsection