@extends('layouts.app') @section('title', 'Domain Details') @section('content')
Custom domain configuration and verification
Status
@if($sellerDomain->isVerified()) Active @else Pending @endif
Primary Domain
@if($sellerDomain->is_primary) Yes @else No @endif
Default Page
{{ $sellerDomain->defaultSalesPage->name ?? 'Not Set' }}
Added
{{ $sellerDomain->created_at->diffForHumans() }}
Follow these steps to verify and activate your custom domain
Add the following DNS records at your domain registrar or DNS provider:
A
@
YOUR_SERVER_IP
Replace YOUR_SERVER_IP with your actual server IP address
CNAME
www
{{ $sellerDomain->domain }}
Add this record if you want www.{{ $sellerDomain->domain }} to work
For SSL/HTTPS support, we recommend using Cloudflare:
Your verification token (for future automated verification):
{{ $sellerDomain->verification_token }}
DNS changes can take 24-48 hours to fully propagate worldwide. You can check propagation status at dnschecker.org
Once DNS records are configured and propagated, click the button below to verify your domain:
Your domain was verified on {{ $sellerDomain->verified_at->format('M d, Y \a\t g:i A') }}
All your sales pages are accessible via your custom domain
Domain Root (/):
{{ $sellerDomain->url }} → Shows "{{ $sellerDomain->defaultSalesPage->name }}"
Individual Sales Pages:
{{ $sellerDomain->url }}/your-page-slug
Note: Page slugs remain the same, just accessed via your custom domain instead of the platform domain.