@extends( ($theme =="white") ? 'layouts.public_white': ( ($theme =="red") ? 'layouts.public_red': (($theme =="green") ? 'layouts.public_green': (($theme =="black") ? 'layouts.public_black': (($theme =="blue") ?'layouts.public_blue':'layouts.public_yellow' )))) ) @section('content')
@csrf
What are you looking for?
@if (count($articles) && $isArticles === 1)

{{ count($articles) }} Search Results Found

@foreach ($articles as $article)

{!! Str::limit(strip_tags($article->description), 100) !!}

{{ $article->created_at->format('d-M-Y H:i') }}


@endforeach
@elseif($isArticles === 0)

{{ _('Search Result Not Found') }}

{{ __('Sorry we cant find any data') }}.

@endif
{{ __('Knowledge Base') }}

See all the knowldge base categories and articles under the KB categories from the Knowledgebase ssection of the Ticketing System.

{{ __('FAQs') }}

You can see all of the FAQs from the FAQs section of the ticketing system.

{{ __('Announcements') }}

You can view all of our announcements and news from this section. Please click the above link to view them.

@if (Auth::check() && Auth::user()->role == 'user')
{{ __('Tickets') }}

You can view all of your tickets by clicking the above link.

@else
{{ __('Login') }}

You can login to the ticketing system by clicking the above login link. If you are not registered with us, please register by clicking here.

@endif
@endsection