@extends('admin.layouts.app') @section('title', $domain->domain) @section('content')
| {{ __('admin.domains.registration_date') }} | {{ $domain->registration_date?->format('d M Y') ?? '-' }} |
| {{ __('admin.domains.expiry_date') }} | {{ $domain->expiry_date?->format('d M Y') ?? '-' }} |
| {{ __('admin.domains.next_due_date') }} | {{ $domain->next_due_date?->format('d M Y') ?? '-' }} |
| {{ __('admin.domains.period') }} | {{ $domain->registration_period }} year(s) |
| {{ __('admin.domains.type') }} | {{ $domain->type }} |
| {{ __('admin.domains.order') }} | #{{ $domain->order_id }} |
| {{ __('admin.domains.first_payment') }} | ${{ number_format($domain->first_payment_amount, 2) }} |
| {{ __('admin.domains.recurring_amount') }} | ${{ number_format($domain->recurring_amount, 2) }}/year |
| {{ __('admin.domains.payment_method') }} | {{ $domain->payment_method ?? '-' }} |
| {{ __('admin.domains.premium') }} | {{ $domain->is_premium ? 'Yes' : 'No' }} |
{{ __('admin.domains.no_nameservers') }}
@endif