2022-04-19 07:07:39 +00:00
|
|
|
<!-- $o = App\Models\Service\Domain::class -->
|
2020-02-19 12:37:45 +00:00
|
|
|
<div class="card">
|
|
|
|
@if($o->service->isPending())
|
|
|
|
<div class="ribbon-wrapper ribbon-lg">
|
|
|
|
<div class="ribbon bg-warning">
|
|
|
|
Pending
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<div class="card-header bg-gray-dark">
|
|
|
|
<h3 class="card-title">Domain Details</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body bg-gray-dark">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<tr>
|
|
|
|
<th>Domain Name</th>
|
2022-04-22 00:36:41 +00:00
|
|
|
<td>{{ $o->service->name }}</td>
|
2020-02-19 12:37:45 +00:00
|
|
|
</tr>
|
2022-10-18 03:17:50 +00:00
|
|
|
@if($o->registrar)
|
|
|
|
<tr>
|
|
|
|
<th>Registrar URL</th>
|
|
|
|
<td><a href="{{ $o->registrar->whitelabel_url }}" target="_blank" class="text-white">{{ $o->registrar->whitelabel_url }}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Registrar Username</th>
|
|
|
|
<td>{{ $o->registrar_username }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Registrar Password</th>
|
|
|
|
<td>{{ $o->registrar_password }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Domain Auth</th>
|
|
|
|
<td>{{ $o->registrar_auth_password }}</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
2020-02-19 12:37:45 +00:00
|
|
|
@if($o->service_connect_date)
|
|
|
|
<tr>
|
|
|
|
<th>Connected</th>
|
|
|
|
<td>{{ $o->service_connect_date->format('Y-m-d') }}</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
2022-04-19 07:07:39 +00:00
|
|
|
|
2022-10-18 03:17:50 +00:00
|
|
|
@if ($o->active)
|
|
|
|
<tr>
|
|
|
|
<th>Expires</th>
|
|
|
|
<td>{{ $o->expire_at->format('Y-m-d') }} <small>({{ $o->expire_at->diffInMonths() }} months) </small></td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
2020-02-19 12:37:45 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|