@extends('layouts.email') @section('title', $domain['domain'].' — Ladill Email') @section('content')
Domains/ {{ $domain['domain'] }}

{{ $domain['domain'] }}

@if($domain['active'] ?? false) Verified @else Pending @endif
@unless($domain['active'] ?? false)

Publish these DNS records

@php $records = $domain['dns_records'] ?? []; @endphp @if(empty($records))

No DNS records returned. Try refreshing.

@else @foreach($records as $r) @endforeach
TypeNameValue
{{ $r['type'] ?? '' }} {{ $r['name'] ?? ($r['host'] ?? '@') }} {{ $r['value'] ?? '' }}
@endif
@csrf DNS changes can take time to propagate.
@else

This domain is verified. Create a mailbox on it.

SPF {{ ($domain['spf'] ?? false) ? '✓' : '✗' }}
DKIM {{ ($domain['dkim'] ?? false) ? '✓' : '✗' }}
DMARC {{ ($domain['dmarc'] ?? false) ? '✓' : '✗' }}
@endunless
@csrf @method('DELETE')
@endsection