@php $channels = core()->getAllChannels(); $currentChannel = core()->getRequestedChannel(); $currentLocale = core()->getRequestedLocale(); $activeConfiguration = system_config()->getActiveConfigurationItem(); @endphp {{ $name = $activeConfiguration->getName() }}

{{ $name }}

@lang('admin::app.configuration.index.back-btn')
@foreach ($channels as $channel) {{ $channel->name }} @endforeach @foreach ($currentChannel->locales->sortBy('name') as $locale) {{ $locale->name }} @endforeach
@foreach ($activeConfiguration->getChildren() as $child)

{{ $child->getName() }}

{!! $child->getInfo() !!}

@foreach ($child->getFields() as $field) @if ( $field->getType() == 'blade' && view()->exists($path = $field->getPath()) ) {!! view($path, compact('field', 'child'))->render() !!} @else @include ('admin::configuration.field-type') @endif @endforeach
@endforeach