@php $normalized = $getState() ?? []; $warnings = $normalized['warnings'] ?? []; $settings = $normalized['settings'] ?? []; @endphp
Normalized settings
@if (! empty($warnings))
Warnings
@endif @if (empty($settings))

No settings available.

@endif @foreach ($settings as $block)
{{ $block['title'] ?? 'Settings' }}
@if (($block['type'] ?? 'keyValue') === 'table')
@foreach ($block['rows'] ?? [] as $row) @endforeach
Path Value
{{ $row['path'] ?? '-' }}
@if (! empty($row['label']))
{{ $row['label'] }}
@endif
{{ is_array($row['value'] ?? null) ? json_encode($row['value'], JSON_PRETTY_PRINT) : ($row['value'] ?? '-') }}
@else
@foreach ($block['entries'] ?? [] as $entry)
{{ $entry['key'] ?? '-' }}
{{ is_array($entry['value'] ?? null) ? json_encode($entry['value'], JSON_PRETTY_PRINT) : ($entry['value'] ?? '-') }}
@endforeach
@endif
@endforeach