@extends('admin.layout') @section('content')

{{ trans('Knowledge Search') }} ...

@php $getUserRoleData = userRoleData(); $knowledgeBase = explode(",",$getUserRoleData->knowledgeBase); @endphp

@if(in_array("View",$knowledgeBase )) @if(count($result)>0) @foreach ($result as $rsVal)
{{ $rsVal->questions }}
{!! Str::limit(strip_tags($rsVal->answers), $limit = 500, $end = '...') !!}
@endforeach {!! $result->appends(request()->input())->links(); !!} @elseif(app('request')->input('search') && count($result) ==0)
No record found.
@endif @else

Please contact with SuperAdmin

@endif
@endsection