@extends('docs.public.layout') @section('title', _lang('Help Center')) @section('content')

{{ _lang('Documentation & Help Center') }}

{{ _lang('Learn how to use the system — every module, what to enter in each field and where it is used, all in one place.') }}

@if ($keyword !== '')

{{ _lang('results for') }} "{{ $keyword }}" — {{ $total }} {{ _lang('found.') }} {{ _lang('Show all') }}

@endif @php($docNum = 0) @foreach ($groups as $gkey => $group) @php($items = $grouped->get($gkey)) @if ($items && $items->count())
{{ $group['title'] }}
@foreach ($items as $a) @php($docNum++)
{{ $docNum }}. {{ $a['title'] }}

{{ $a['summary'] }}

@endforeach
@endif @endforeach @if ($grouped->isEmpty())
{{ _lang('No results found.') }}
@endif @endsection