{{-- Title of the page. --}} @lang('admin::app.configuration.index.title') {{-- Heading of the page --}}

@lang('admin::app.configuration.index.title')

{{-- Page Content --}}
@foreach ($config->items as $itemKey => $item)
{{-- Title of the Main Card --}}

@lang($item['name'] ?? '')

{{-- Info of the Main Card --}}

@lang($item['info'] ?? '')

{{-- Menus cards --}} @foreach ($item['children'] as $childKey => $child) @if (isset($child['icon'])) @endif

@lang($child['name'])

@lang($child['info'] ?? '')

@endforeach
@endforeach