@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