@php $channels = core()->getAllChannels(); $currentChannel = core()->getRequestedChannel(); $currentLocale = core()->getRequestedLocale(); @endphp @if ($items = Arr::get($config->items, request()->route('slug') . '.children')) @foreach ($items as $key => $item) @if ( $key == request()->route('slug2')) {{ $title = trans($item['name']) }} @endif @endforeach @endif

{{ $title }}

@if ($groups)
@foreach ($groups as $key => $item)

@lang($item['name'])

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

@foreach ($item['fields'] as $field) @if ( $field['type'] == 'blade' && view()->exists($path = $field['path']) ) {!! view($path, compact('field', 'item'))->render() !!} @else @include ('admin::configuration.field-type') @endif @php ($hint = $field['title'] . '-hint') @if ($hint !== __($hint)) @endIf @endforeach
@endforeach
@endIf