{{-- Step 1: Mail-Records (domain-spezifisch) --}}
Step 1
Mail-Records
Absenderdomain
@foreach ($dynamic as $r)
{{ $r['type'] }}
{{ $r['name'] }}
{{ $r['value'] }}
@if($checked && ($r['state'] ?? 'neutral') !== 'ok' && !empty($r['display_actual']))
Ist:
{{ $r['display_actual'] }}
@endif
@endforeach
{{-- Step 2: Globale Infrastruktur --}}
Step 2
Globale Infrastruktur
gilt für alle Domains
@foreach ($static as $r)
{{ $r['type'] }}
{{ $r['name'] }}
{{ $r['value'] }}
@if($checked && ($r['state'] ?? 'neutral') !== 'ok' && !empty($r['display_actual']))
Ist:
{{ $r['display_actual'] }}
@endif
@endforeach
{{-- Optional-Records --}}
@if(!empty($optional))
Optional
Empfohlene Zusatz-Records
@foreach ($optional as $r)
{{ $r['type'] }}
{{ $r['name'] }}
Optional
{{ $r['value'] }}
@if(!empty($r['info']))
{{ $r['info'] }}
@endif
@endforeach
@endif