@extends('layouts.customer_panel') @section('content')
{{ __('Search Knowledge Base Articles') }}

Showing search results for: {{ isset($searchData) ? $searchData : '' }}


@if(count($knowledgeData) > 0) @foreach($knowledgeData as $key => $value)

{{ isset($group[$key]) ? $group[$key] : '' }}

@foreach($value as $innerKey => $innerValue)
{!! mb_strlen($innerValue['description']) > 220 ? mb_substr($innerValue['description'], 0, 220) . "..." : $innerValue['description'] !!}
@endforeach @endforeach @else

{{ __('No knowledge base articles found!') }}

@endif
@endsection