@extends('admin.layouts.main') @section('title', 'Hosting: ' . $hostingAccount->domain) @section('menu', 'Hosting') @section('content')
| Domain | {{ $hostingAccount->domain }} |
|---|---|
| Client | @if($hostingAccount->user){{ $hostingAccount->user->first_name }} {{ $hostingAccount->user->last_name }}@else N/A @endif |
| Product | {{ $hostingAccount->product?->name ?? 'N/A' }} |
| Server | {{ $hostingAccount->server?->name ?? 'N/A' }} |
| Package | {{ $hostingAccount->package_name ?? 'N/A' }} |
| Username | {{ $hostingAccount->username ?? 'N/A' }} |
| Dedicated IP | {{ $hostingAccount->dedicated_ip ?? 'N/A' }} |
| Status | {{ ucfirst($hostingAccount->status) }} |
| Server Status | {{ $hostingAccount->server_status ?? 'N/A' }} |
| Last Synced | {{ $hostingAccount->last_synced_at?->format('M d, Y H:i') ?? 'Never' }} |
| Billing Cycle | {{ $hostingAccount->billingCycle?->name ?? 'N/A' }} |
|---|---|
| Registration Price | {{ $hostingAccount->registration_price ? number_format($hostingAccount->registration_price, 2) : 'N/A' }} |
| Renewal Price | {{ $hostingAccount->renewal_price ? number_format($hostingAccount->renewal_price, 2) : 'N/A' }} |
| Registration Date | {{ $hostingAccount->registration_date?->format('M d, Y') ?? 'N/A' }} |
| Next Due Date | {{ $hostingAccount->next_due_date?->format('M d, Y') ?? 'N/A' }} |
| Cancel Type | {{ ucfirst(str_replace('_', ' ', $hostingAccount->cancel_type ?? 'N/A')) }} |
|---|---|
| Requested At | {{ $hostingAccount->cancel_request_date?->format('M d, Y H:i') ?? 'N/A' }} |