@extends('client.layouts.main') @section('title', 'My Domains') @section('content')
| Domain | Status | Registration | Expiry | Auto-Renew | Actions |
|---|---|---|---|---|---|
| {{ $domain->domain_name }} | @php $statusColors = [ 'active' => 'success', 'pending' => 'warning', 'expired' => 'danger', 'cancelled' => 'default', 'transferred' => 'info', ]; @endphp {{ ucfirst($domain->status) }} | {{ $domain->registration_date ? $domain->registration_date->format('M d, Y') : '-' }} | {{ $domain->expiry_date ? $domain->expiry_date->format('M d, Y') : '-' }} | @if($domain->auto_renew) Yes @else No @endif | View |
| No domains found. | |||||